blob: 1a171db9cfe25b21e45e61fc584932c0f46d74c8 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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 }}
|