aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/templates/collecting.html.tmpl
blob: d8ecf18cd95082077818b560f4a88f533105d5a4 (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
53
54
55
56
57
58
59
60
61
{{ 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 Coin Collecting" }}</h1>
</header>
<main class="container">
	<p>
		{{ .Get "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!" }}
	</p>
	<hr>
	<div id="sections" class="button-grid">
		<a class="no-deco" href="/collecting/crh">
			<article>
				<header>
					<h3>{{ .Get "Coin Roll Hunting" }}</h3>
				</header>
				{{ .Get "Learn about collecting coins from coin rolls" }}
			</article>
		</a>
		<a class="no-deco" href="/collecting/storage">
			<article>
				<header>
					<h3>{{ .Get "Coin Storage" }}</h3>
				</header>
				{{ .Get "Learn about the different methods to storing your collection" }}
			</article>
		</a>
		<!-- TODO: Implement the shop hunting page -->
		<a class="no-deco" href="#">
			<article>
				<header>
					<h3>{{ .Get "Shop Hunting" }}</h3>
				</header>
				{{ .Get "Learn about how to collect coins from shops" }}
			</article>
		</a>
		<a class="no-deco" href="/collecting/vending">
			<article>
				<header>
					<h3>{{ .Get "Vending Machine Hunting" }}</h3>
				</header>
				{{ .Get "Learn about collecting coins from vending machines" }}
			</article>
		</a>
	</div>
</main>
{{ end }}