blob: 6f82c5e2243bb5daecc22436e7366d0a259e1911 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 }}
|