summaryrefslogtreecommitdiffhomepage
path: root/templates/root.templ
diff options
context:
space:
mode:
Diffstat (limited to 'templates/root.templ')
-rw-r--r--templates/root.templ31
1 files changed, 1 insertions, 30 deletions
diff --git a/templates/root.templ b/templates/root.templ
index f4fd0e2..bfe9210 100644
--- a/templates/root.templ
+++ b/templates/root.templ
@@ -2,36 +2,7 @@ package templates
import "git.thomasvoss.com/euro-cash.eu/i18n"
-templ Root(head, body templ.Component) {
- {{ p := ctx.Value("printer").(i18n.Printer) }}
- <!DOCTYPE html>
- <html lang={ p.Locale.Bcp } data-theme={ ctx.Value("theme").(string) }>
- <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"/>
- <title>Euro Cash</title>
- if head != nil {
- @head
- }
- </head>
- <body>
- if body != nil {
- @body
- }
- <footer>
- <p>
- <small>
- { p.T("Found a mistake or want to contribute missing information?") }
- <a href="/">{ p.T("Feel free to contact us!") }</a>
- </small>
- </p>
- </footer>
- </body>
- </html>
-}
-
-templ Index() {
+templ Root() {
{{ p := ctx.Value("printer").(i18n.Printer) }}
<header>
@navbar()