aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/templates/banknotes.html.tmpl
blob: 8a50dfa7ea7b8781838bfe0bc1c8551ed7cc5e5c (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
50
51
52
{{ define "header" }}
{{ template "header-navbar" . }}

<style>
	#sections {
		--button-min-width: 40ch;

		article {
			min-height: 100%;
		}
	}
</style>
{{ end }}

{{ define "content" }}
<header class="container">
	{{ template "navbar" . }}
	<h1>{{ .Get "Euro Banknotes" }}</h1>
</header>
<main class="container">
	<p>
		{{ .Get "On this section of the site you can find everything there is to know about the banknotes of the Eurozone." }}
	</p>
	<hr>
	<div id="sections" class="button-grid">
		<a class="no-deco" href="/banknotes/designs">
			<article>
				<header>
					<h3>{{ .Get "Designs" }}</h3>
				</header>
				{{ .Get "View the different Euro banknote designs" }}
			</article>
		</a>
		<a class="no-deco" href="/banknotes/codes">
			<article>
				<header>
					<h3>{{ .Get "Location Codes" }}</h3>
				</header>
				{{ .Get "Find out where your notes were printed" }}
			</article>
		</a>
		<a class="no-deco" href="/banknotes/test">
			<article>
				<header>
					<h3>{{ .Get "Test Notes" }}</h3>
				</header>
				{{ .Get "Learn about the special test notes" }}
			</article>
		</a>
	</div>
</main>
{{ end }}