diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-08-07 01:45:40 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-08-07 01:45:40 +0200 |
commit | 7fbaed9158ac5c405ee3150c2bf27af8ec1380ba (patch) | |
tree | f740b024118a3d4f2e53f7cfddd752f2f6266308 | |
parent | 7acb571327675acd9cf37daec08699db485b458d (diff) |
Make <link> self-closing
-rw-r--r-- | templates/root.templ | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/root.templ b/templates/root.templ index d372766..722aa2c 100644 --- a/templates/root.templ +++ b/templates/root.templ @@ -11,7 +11,7 @@ templ Root(head, body templ.Component) { <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <link rel="stylesheet" type="text/css" href="/style.css"> + <link rel="stylesheet" type="text/css" href="/style.css" /> <title>Euro Cash</title> if head != nil { @head |