diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-01-05 20:24:20 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-01-05 20:24:20 +0100 |
commit | dd5f14befa96d71ae2b32f7809de99cf50dd7f07 (patch) | |
tree | 71242a72defc952befed22277fbf4df62803eb97 /src | |
parent | 170b985eb621ae97dffe60c7bc284f495ace6fc7 (diff) |
Add the /banknotes page
Diffstat (limited to 'src')
-rw-r--r-- | src/templates/-navbar.html.tmpl | 2 | ||||
-rw-r--r-- | src/templates/banknotes.html.tmpl | 49 |
2 files changed, 50 insertions, 1 deletions
diff --git a/src/templates/-navbar.html.tmpl b/src/templates/-navbar.html.tmpl index b0b1130..f1e95e9 100644 --- a/src/templates/-navbar.html.tmpl +++ b/src/templates/-navbar.html.tmpl @@ -5,7 +5,7 @@ <li><a href="#TODO">{{ .T "News" }}</a></li> <li><a href="/collecting">{{ .T "Coin Collecting" }}</a></li> <li><a href="/coins">{{ .T "Coins" }}</a></li> - <li><a href="#TODO">{{ .T "Banknotes" }}</a></li> + <li><a href="/banknotes">{{ .T "Banknotes" }}</a></li> <li><a href="/jargon">{{ .T "Jargon" }}</a></li> </menu> <menu> diff --git a/src/templates/banknotes.html.tmpl b/src/templates/banknotes.html.tmpl new file mode 100644 index 0000000..1a171db --- /dev/null +++ b/src/templates/banknotes.html.tmpl @@ -0,0 +1,49 @@ +{{ define "content" }} +<header> + {{ template "navbar" . }} + <h1>{{ .T "Euro Banknotes" }}</h1> +</header> +<main> + <p> + {{ .T ` + On this section of the site you can find everything there is to + know about the banknotes of the Eurozone. + ` }} + </p> + <hr> + <section> + <div class="grid"> + <a class="no-deco" href="/banknotes/designs"> + <article> + <header> + <h3>{{ .T "Designs" }}</h3> + </header> + <main> + {{ .T "View the different Euro-note designs!" }} + </main> + </article> + </a> + <a class="no-deco" href="/banknotes/codes"> + <article> + <header> + <h3>{{ .T "Location Codes" }}</h3> + </header> + <main> + {{ .T "Find out where your notes were printed!" }} + </main> + </article> + </a> + <a class="no-deco" href="/banknotes/test"> + <article> + <header> + <h3>{{ .T "Test Notes" }}</h3> + </header> + <main> + {{ .T "Learn about the special test notes!" }} + </main> + </article> + </a> + </div> + </section> +</main> +{{ end }}
\ No newline at end of file |