summaryrefslogtreecommitdiffhomepage
path: root/template/root.templ
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-13 13:01:48 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-13 13:01:48 +0200
commit548090e67f66acf84385c4152ca464e52d3e3319 (patch)
tree9b6de528bd7b0aa63362fa83f5c8e6a97f68a5d8 /template/root.templ
parenta1d809960bee74df19c7e5fc34ffd1e4757cfdcb (diff)
Migrate away from templ and towards html/template
Diffstat (limited to 'template/root.templ')
-rw-r--r--template/root.templ23
1 files changed, 0 insertions, 23 deletions
diff --git a/template/root.templ b/template/root.templ
deleted file mode 100644
index 657314c..0000000
--- a/template/root.templ
+++ /dev/null
@@ -1,23 +0,0 @@
-package template
-
-import "git.thomasvoss.com/euro-cash.eu/lib"
-
-templ Root() {
- {{ p := ctx.Value("printer").(lib.Printer) }}
- <header>
- @navbar()
- <hgroup>
- <h1>{ p.T("The Euro Cash Compendium") }</h1>
- <p>
- { p.T("United in") }
- <del>{ p.T("diversity") }</del>
- <ins>{ p.T("cash") }</ins>
- </p>
- </hgroup>
- </header>
- <main>
- <p>
- { p.T("Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.") }
- </p>
- </main>
-}