blob: 6fbdf15ca4926720b3a8ae5f8c50683281950d92 (
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
|
{{ define "content" }}
<header>
{{ template "navbar" . }}
<h1>{{ .Get "Euro Coins" }}</h1>
</header>
<main>
<p>
{{ .Get "On this section of the site you can find everything there is to know about the coins of the Eurozone." }}
</p>
<hr />
<section>
<div class="grid">
<a class="no-deco" href="/coins/designs">
<article>
<header>
<h3>{{ .Get "Designs" }}</h3>
</header>
<main>
{{ .Get "View the 600+ different Euro-coin designs!" }}
</main>
</article>
</a>
<a class="no-deco" href="/coins/mintages">
<article>
<header>
<h3>{{ .Get "Mintages" }}</h3>
</header>
<main>
{{ .Get "View the mintage figures of all the Euro coins!" }}
</main>
</article>
</a>
<a class="no-deco" href="/coins/varieties">
<article>
<header>
<h3>{{ .Get "Varieties" }}</h3>
</header>
<main>
{{ .Get "View all the known Euro varieties!" }}
</main>
</article>
</a>
</div>
</section>
</main>
{{ end }}
|