diff options
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/coins-designs.html.tmpl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/templates/coins-designs.html.tmpl b/src/templates/coins-designs.html.tmpl new file mode 100644 index 0000000..6f82c5e --- /dev/null +++ b/src/templates/coins-designs.html.tmpl @@ -0,0 +1,31 @@ +{{ define "content" }} +<header> + {{ template "navbar" . }} + <h1>{{ .T "Euro Coin Designs" }}</h1> +</header> +<main> + <p> + {{ .T ` + Here you’ll be able to view all the coin designs for each country + in the Eurozone. This section of the site doesn’t include minor + varieties such as different mintmarks or errors; those are on the + %svarieties%s page.` + `<a href="/coins/varieties">` `</a>` | safe + }} + </p> + <hr /> + <div class="country-grid"> + {{ $p := .Printer }} + {{ range .Countries }} + <a + class="outline" + data-code={{ toUpper .Code }} + role="button" + href=/coins/designs/{{ .Code }} + > + {{ $p.T .Name }} + </a> + {{ end }} + </div> +</main> +{{ end }} |