summaryrefslogtreecommitdiffhomepage
path: root/src/templates/collecting.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/collecting.html.tmpl')
-rw-r--r--src/templates/collecting.html.tmpl76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/templates/collecting.html.tmpl b/src/templates/collecting.html.tmpl
new file mode 100644
index 0000000..aacb442
--- /dev/null
+++ b/src/templates/collecting.html.tmpl
@@ -0,0 +1,76 @@
+{{ define "content" }}
+<header>
+ {{ template "navbar" . }}
+ <h1>{{ .T "Euro Coin Collecting" }}</h1>
+</header>
+<main>
+ <p>
+ {{ .T `
+ 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>
+ <section>
+ <div class="grid">
+ <a class="no-deco" href="/collecting/crh">
+ <article>
+ <header>
+ <h3>{{ .T "Coin Roll Hunting" }}</h3>
+ </header>
+ <main>
+ {{ .T `
+ Learn about collecting coins from coin rolls!
+ ` }}
+ </main>
+ </article>
+ </a>
+ <a class="no-deco" href="/collecting/storage">
+ <article>
+ <header>
+ <h3>{{ .T "Coin Storage" }}</h3>
+ </header>
+ <main>
+ {{ .T `
+ Learn about the different methods to storing
+ your collection!
+ `}}
+ </main>
+ </article>
+ </a>
+ <!-- TODO: Implement the shop hunting page -->
+ <a class="no-deco" href="#">
+ <article>
+ <header>
+ <h3>{{ .T "Shop Hunting" }}</h3>
+ </header>
+ <main>
+ {{ .T `
+ Learn about how to collect coins from
+ shop-keepers and other people who deal in
+ cash!
+ ` }}
+ </main>
+ </article>
+ </a>
+ </div>
+ <div class="grid">
+ <a class="no-deco" href="/collecting/vending">
+ <article>
+ <header>
+ <h3>{{ .T "Vending Machine Hunting" }}</h3>
+ </header>
+ <main>
+ {{ .T `
+ Learn about collecting coins from vending
+ machines!
+ ` }}
+ </main>
+ </article>
+ </a>
+ </div>
+ </section>
+</main>
+{{ end }} \ No newline at end of file