summaryrefslogtreecommitdiffhomepage
path: root/src/templates
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/-navbar.html.tmpl2
-rw-r--r--src/templates/banknotes.html.tmpl49
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