summaryrefslogtreecommitdiffhomepage
path: root/src/templates/collecting.html.tmpl
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-11-26 00:02:20 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-11-26 00:02:20 +0100
commit71619a5d611fd8a7820d4438fc00c199b70b0f1c (patch)
tree7be571abd75daee17634fcb08e79ebd492a361e6 /src/templates/collecting.html.tmpl
parentd2c1ec877f2350252375b95bf718dec6b091ad8c (diff)
Add a page on vending machine hunting
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