diff options
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/-navbar.html.tmpl | 6 | ||||
-rw-r--r-- | src/templates/banknotes-codes.html.tmpl | 352 | ||||
-rw-r--r-- | src/templates/banknotes.html.tmpl | 49 | ||||
-rw-r--r-- | src/templates/coins-designs-ad.html.tmpl | 16 | ||||
-rw-r--r-- | src/templates/coins-designs.html.tmpl | 26 | ||||
-rw-r--r-- | src/templates/coins-mintages.html.tmpl | 4 | ||||
-rw-r--r-- | src/templates/coins.html.tmpl | 2 | ||||
-rw-r--r-- | src/templates/collecting-crh.html.tmpl | 591 | ||||
-rw-r--r-- | src/templates/collecting-storage.html.tmpl | 163 | ||||
-rw-r--r-- | src/templates/collecting-vending.html.tmpl | 163 | ||||
-rw-r--r-- | src/templates/collecting.html.tmpl | 76 |
11 files changed, 1421 insertions, 27 deletions
diff --git a/src/templates/-navbar.html.tmpl b/src/templates/-navbar.html.tmpl index 90f3cc7..f1e95e9 100644 --- a/src/templates/-navbar.html.tmpl +++ b/src/templates/-navbar.html.tmpl @@ -3,9 +3,9 @@ <menu> <li><a href="/">{{ .T "Home" }}</a></li> <li><a href="#TODO">{{ .T "News" }}</a></li> - <li><a href="#TODO">{{ .T "Coin Collecting" }}</a></li> + <li><a href="/collecting">{{ .T "Coin Collecting" }}</a></li> <li><a href="/coins">{{ .T "Coins" }}</a></li> - <li><a href="#TODO">{{ .T "Banknotes" }}</a></li> + <li><a href="/banknotes">{{ .T "Banknotes" }}</a></li> <li><a href="/jargon">{{ .T "Jargon" }}</a></li> </menu> <menu> @@ -225,4 +225,4 @@ </li> </menu> </nav> -{{ end }} +{{ end }}
\ No newline at end of file diff --git a/src/templates/banknotes-codes.html.tmpl b/src/templates/banknotes-codes.html.tmpl new file mode 100644 index 0000000..f7aea7f --- /dev/null +++ b/src/templates/banknotes-codes.html.tmpl @@ -0,0 +1,352 @@ +{{ define "content" }} +<header> + {{ template "navbar" . }} + <h1>{{ .T "Location Codes" }}</h1> +</header> +<main> + <p> + {{ .T ` + Euro banknotes have two codes on them: a printer code and a serial + number. The printer code tells you where a given note was printed, + while the serial number tells you which country issues the banknote + (for the 2002 series) or where the banknote was printed (for the + Europa series). + ` }} + </p> + + <h2>{{ .T "Printer Code" }}</h2> + <p> + {{ .T ` + The printer code (not to be confused with the serial number) is a + small code printed on banknotes with information about where the + banknote was printed. All printer codes take the form of ‘X000X0’ + — or in other words — a letter followed by 3 numbers, a letter + and a final number. + ` }} + </p> + <p> + {{ .T ` + The printer code can be a bit tricky to find. The following + dropdowns will show you where to find the printer code on each + note. + ` }} + </p> + <details> + <summary>{{ .T "2002 Series Printer Codes" }}</summary> + <p> + {{ .T ` + All these images are taken from %seurobilltracker.com%s.` + `<a href="https://eurobilltracker.com" target="_blank">` + `</a>` | safe + }} + </p> + {{ template "banknotes/codes/code-pos" (tuple .Printer 5 "2002") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 10 "2002") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 20 "2002") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 50 "2002") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 100 "2002") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 200 "2002") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 500 "2002") }} + </details> + <details> + <summary>{{ .T "Europa Series Printer Codes" }}</summary> + {{ template "banknotes/codes/code-pos" (tuple .Printer 5 "europa") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 10 "europa") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 20 "europa") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 50 "europa") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 100 "europa") }} + {{ template "banknotes/codes/code-pos" (tuple .Printer 200 "europa") }} + </details> + + <p> + {{ .T ` + The first letter in the printer code identifies the specific + printer at which the banknote was printed. The tables below will + tell you which letters correspond to which printers. The final + letter and number form a pair (such as ‘A2’ or ‘D6’). This pair + acts as a set of coordinates telling you where on the sheet of + paper the banknote was located. During printing, banknotes will be + printed multiple times on a large sheet of paper which is later cut + into smaller individual banknotes. A note with the pair ‘A1’ will + have been at the upper-left corner of the printing sheet, with ‘A2’ + to it’s right and ‘B1’ below it. + ` }} + </p> + + <h2>{{ .T "2002 Series" }}</h2> + <p> + {{ .T ` + In the 2002 series, the first letter of the serial number can be + used to identify the country that issued the banknote. The + following table shows which countries map to which codes. + ` }} + </p> + + <table role="grid"> + <thead> + <tr> + <th>{{ .T "Code" }}</th> + <th>{{ .T "Country" }}</th> + </tr> + </thead> + <tbody> + <tr> + <td>D</td> + <td>{{ .T "Estonia" }}</td> + </tr> + <tr> + <td>E</td> + <td>{{ .T "Slovakia" }}</td> + </tr> + <tr> + <td>F</td> + <td>{{ .T "Malta" }}</td> + </tr> + <tr> + <td>G</td> + <td>{{ .T "Cyprus" }}</td> + </tr> + <tr> + <td>H</td> + <td>{{ .T "Slovenia" }}</td> + </tr> + <tr> + <td>L</td> + <td>{{ .T "Finland" }}</td> + </tr> + <tr> + <td>M</td> + <td>{{ .T "Portugal" }}</td> + </tr> + <tr> + <td>N</td> + <td>{{ .T "Austria" }}</td> + </tr> + <tr> + <td>P</td> + <td>{{ .T "Netherlands" }}</td> + </tr> + <tr> + <td>S</td> + <td>{{ .T "Italy" }}</td> + </tr> + <tr> + <td>T</td> + <td>{{ .T "Ireland" }}</td> + </tr> + <tr> + <td>U</td> + <td>{{ .T "France" }}</td> + </tr> + <tr> + <td>V</td> + <td>{{ .T "Spain" }}</td> + </tr> + <tr> + <td>X</td> + <td>{{ .T "Germany" }}</td> + </tr> + <tr> + <td>Y</td> + <td>{{ .T "Greece" }}</td> + </tr> + <tr> + <td>Z</td> + <td>{{ .T "Belgium" }}</td> + </tr> + </tbody> + </table> + + <p> + {{ .T ` + The first letter of the printer code can also be used to identify + the specific printer at which the banknote was printed. The + printer- and country codes do not need to line up; a banknote + issued by a country will often be printed in another. + ` }} + </p> + + <table role="grid"> + <thead> + <tr> + <th>{{ .T "Code" }}</th> + <th>{{ .T "Country" }}</th> + <th>{{ .T "Printer" }}</th> + </tr> + </thead> + <tbody> + <tr> + <td>D</td> + <td>{{ .T "Finland" }}</td> + <td>SETEC</td> + </tr> + <tr> + <td>E</td> + <td>{{ .T "France" }}</td> + <td>Oberthur</td> + </tr> + <tr> + <td>F</td> + <td>{{ .T "Austria" }}</td> + <td>Österreichische Banknoten‐ und Sicherheitsdruck GmbH</td> + </tr> + <tr> + <td>G</td> + <td>{{ .T "Netherlands" }}</td> + <td>Koninklijke Joh. Enschede</td> + </tr> + <tr> + <td>H</td> + <td>{{ .T "United Kingdom" }}</td> + <td>Thomas de la Rue</td> + </tr> + <tr> + <td>J</td> + <td>{{ .T "Italy" }}</td> + <td>Banca d’ Italia</td> + </tr> + <tr> + <td>K</td> + <td>{{ .T "Ireland" }}</td> + <td>{{ .T "Central Bank of Ireland" }}</td> + </tr> + <tr> + <td>L</td> + <td>{{ .T "France" }}</td> + <td>Banque de France</td> + </tr> + <tr> + <td>M</td> + <td>{{ .T "Spain" }}</td> + <td>Fábrica Nacional de Moneda y Timbre</td> + </tr> + <tr> + <td>N</td> + <td>{{ .T "Greece" }}</td> + <td>{{ .T "Bank of Greece" }}</td> + </tr> + <tr> + <td>P</td> + <td>{{ .T "Germany" }}</td> + <td>Giesecke & Devrient</td> + </tr> + <tr> + <td>R</td> + <td>{{ .T "Germany" }}</td> + <td>Bundesdruckerei Berlin</td> + </tr> + <tr> + <td>T</td> + <td>{{ .T "Belgium" }}</td> + <td>{{ .T "National Bank of Belgium" }}</td> + </tr> + <tr> + <td>U</td> + <td>{{ .T "Portugal" }}</td> + <td>Valora S.A.</td> + </tr> + </tbody> + </table> + + <h2>{{ .T "Europa Series" }}</h2> + <p> + {{ .T ` + In the Europa series the first letter of the serial number can be + used to identify the printer that printed the banknote, just like + the printer code. The following table shows which countries map to + which codes. + ` }} + </p> + <table role="grid"> + <thead> + <tr> + <th>{{ .T "Code" }}</th> + <th>{{ .T "Country" }}</th> + <th>{{ .T "Printer" }}</th> + </tr> + </thead> + <tr> + <td>E</td> + <td>{{ .T "France" }}</td> + <td>Oberthur</td> + </tr> + <tr> + <td>F</td> + <td>{{ .T "Bulgaria" }}</td> + <td>Oberthur Fiduciaire AD</td> + </tr> + <tr> + <td>M</td> + <td>{{ .T "Portugal" }}</td> + <td>Valora S.A.</td> + </tr> + <tr> + <td>N</td> + <td>{{ .T "Austria" }}</td> + <td>Österreichische Banknoten‐ und Sicherheitsdruck GmbH</td> + </tr> + <tr> + <td>P</td> + <td>{{ .T "Netherlands" }}</td> + <td>Koninklijke Joh. Enschedé</td> + </tr> + <tr> + <td>R</td> + <td>{{ .T "Germany" }}</td> + <td>Bundesdruckerei Berlin</td> + </tr> + <tr> + <td>S</td> + <td>{{ .T "Italy" }}</td> + <td>Banca d’Italia</td> + </tr> + <tr> + <td>T</td> + <td>{{ .T "Ireland" }}</td> + <td>{{ .T "Central Bank of Ireland" }}</td> + </tr> + <tr> + <td>U</td> + <td>{{ .T "France" }}</td> + <td>Banque de France</td> + </tr> + <tr> + <td>V</td> + <td>{{ .T "Spain" }}</td> + <td>Fábrica Nacional de Moneda y Timbre</td> + </tr> + <tr> + <td>W</td> + <td>{{ .T "Germany" }}</td> + <td>Giesecke & Devrient Leipzig</td> + </tr> + <tr> + <td>X</td> + <td>{{ .T "Germany" }}</td> + <td>Giesecke & Devrient Munich</td> + </tr> + <tr> + <td>Y</td> + <td>{{ .T "Greece" }}</td> + <td>{{ .T "Bank of Greece" }}</td> + </tr> + <tr> + <td>Z</td> + <td>{{ .T "Belgium" }}</td> + <td>{{ .T "National Bank of Belgium" }}</td> + </tr> + </table> +</main> +{{ end }} + +{{ define "banknotes/codes/code-pos" }} +{{ $p := (index . 0) }} +<details> + <summary>{{ $p.T "%d Euro" (index . 1) }}</summary> + <img + class="big" + src={{ sprintf "/codes/%s-%03d.jpg" (index . 2) (index . 1) }} + alt={{ $p.T "Printer code on a %d euro bill" (index . 1) }} + > +</details> +{{ end }}
\ No newline at end of file diff --git a/src/templates/banknotes.html.tmpl b/src/templates/banknotes.html.tmpl new file mode 100644 index 0000000..1a171db --- /dev/null +++ b/src/templates/banknotes.html.tmpl @@ -0,0 +1,49 @@ +{{ define "content" }} +<header> + {{ template "navbar" . }} + <h1>{{ .T "Euro Banknotes" }}</h1> +</header> +<main> + <p> + {{ .T ` + On this section of the site you can find everything there is to + know about the banknotes of the Eurozone. + ` }} + </p> + <hr> + <section> + <div class="grid"> + <a class="no-deco" href="/banknotes/designs"> + <article> + <header> + <h3>{{ .T "Designs" }}</h3> + </header> + <main> + {{ .T "View the different Euro-note designs!" }} + </main> + </article> + </a> + <a class="no-deco" href="/banknotes/codes"> + <article> + <header> + <h3>{{ .T "Location Codes" }}</h3> + </header> + <main> + {{ .T "Find out where your notes were printed!" }} + </main> + </article> + </a> + <a class="no-deco" href="/banknotes/test"> + <article> + <header> + <h3>{{ .T "Test Notes" }}</h3> + </header> + <main> + {{ .T "Learn about the special test notes!" }} + </main> + </article> + </a> + </div> + </section> +</main> +{{ end }}
\ No newline at end of file diff --git a/src/templates/coins-designs-ad.html.tmpl b/src/templates/coins-designs-ad.html.tmpl index 1effaeb..c42930a 100644 --- a/src/templates/coins-designs-ad.html.tmpl +++ b/src/templates/coins-designs-ad.html.tmpl @@ -23,16 +23,16 @@ </p> <dl> <dt>{{ .T "%s, %s, and %s" - (.Printer.M 0.01 false) - (.Printer.M 0.02 false) - (.Printer.M 0.05 false) }}</dt> + (.Printer.M 0.01) + (.Printer.M 0.02) + (.Printer.M 0.05) }}</dt> <dd>{{ .T "Andorran landscapes, nature, fauna, and flora" }}</dd> <dt>{{ .T "%s, %s, and %s" - (.Printer.M 0.10 false) - (.Printer.M 0.20 false) - (.Printer.M 0.50 false) }}</dt> + (.Printer.M 0.10) + (.Printer.M 0.20) + (.Printer.M 0.50) }}</dt> <dd>{{ .T "Andorra’s Romanesque art" }}</dd> - <dt>{{ .Printer.M 1.00 false }}</dt> + <dt>{{ .Printer.M 1.00 }}</dt> <dd>{{ .T "Casa de la Vall" }}</dd> </dl> <p> @@ -88,4 +88,4 @@ ` `<span lang="la">` `</span>` }} </p> </main> -{{ end }} +{{ end }}
\ No newline at end of file diff --git a/src/templates/coins-designs.html.tmpl b/src/templates/coins-designs.html.tmpl index 6f82c5e..05ff440 100644 --- a/src/templates/coins-designs.html.tmpl +++ b/src/templates/coins-designs.html.tmpl @@ -4,7 +4,7 @@ <h1>{{ .T "Euro Coin Designs" }}</h1> </header> <main> - <p> + <p> {{ .T ` Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor @@ -13,19 +13,19 @@ `<a href="/coins/varieties">` `</a>` | safe }} </p> - <hr /> - <div class="country-grid"> + <hr /> + <div class="country-grid"> {{ $p := .Printer }} {{ range .Countries }} - <a - class="outline" - data-code={{ toUpper .Code }} - role="button" - href=/coins/designs/{{ .Code }} - > - {{ $p.T .Name }} - </a> + <a + class="outline" + data-code={{ toUpper .Code }} + role="button" + href=/coins/designs/{{ .Code }} + > + {{ $p.T .Name }} + </a> {{ end }} - </div> + </div> </main> -{{ end }} +{{ end }}
\ No newline at end of file diff --git a/src/templates/coins-mintages.html.tmpl b/src/templates/coins-mintages.html.tmpl index 4ac29e8..8c60248 100644 --- a/src/templates/coins-mintages.html.tmpl +++ b/src/templates/coins-mintages.html.tmpl @@ -73,7 +73,7 @@ <th>{{ .T "Year" }}</th> {{ with $p := .Printer }} {{ range denoms }} - <th>{{ $p.M . false }}</th> + <th>{{ $p.M . }}</th> {{ end }} {{ end }} </thead> @@ -157,4 +157,4 @@ /> {{ index . 2 }} </label> -{{ end }} +{{ end }}
\ No newline at end of file diff --git a/src/templates/coins.html.tmpl b/src/templates/coins.html.tmpl index 68c3f87..481771c 100644 --- a/src/templates/coins.html.tmpl +++ b/src/templates/coins.html.tmpl @@ -46,4 +46,4 @@ </div> </section> </main> -{{ end }} +{{ end }}
\ No newline at end of file diff --git a/src/templates/collecting-crh.html.tmpl b/src/templates/collecting-crh.html.tmpl new file mode 100644 index 0000000..bbca883 --- /dev/null +++ b/src/templates/collecting-crh.html.tmpl @@ -0,0 +1,591 @@ +{{ define "content" }} +<header> + {{ template "navbar" . }} + <h1>{{ .T "Coin Roll Hunting" }}</h1> +</header> +<main> + <h2>{{ .T "What is Coin Roll Hunting?" }}</h2> + <p> + {{ .T ` + Coin roll hunting is a popular method of coin collecting in which + you withdrawal cash from your bank in the form of coins which you + then search through to find new additions to your collection. Once + you’ve searched through all your coins, you will typically deposit + your left over coins at the bank and withdrawal new coins. + ` }} + </p> + + <p> + {{ .T ` + This type of coin collecting is often called ‘Coin Roll Hunting’ + due to the fact that coins are often withdrawn in paper-wrapped + rolls. You may however find that your coins come in plastic bags + instead (common in countries like Ireland). + ` }} + </p> + + <p> + {{ .T ` + Depending on your bank and branch, the process of obtaining coins + may differ. Some banks require you speak to a teller, others have + coin machines. Some banks may also require that you are a customer + or even to have a business account. If you aren’t sure about if + you can get coins we suggest you contact your bank, although + further down this page we also have information about the + withdrawal of coins in various countries and major banks. + ` }} + </p> + + <h2>{{ .T "Getting Started" }}</h2> + <p> + {{ .T ` + To get started with coin roll hunting you should first contact your + bank or check their website to find details regarding coin + withdrawal. You will then typically need to go to the bank to pick + up your coins. Depending on your bank you may be able to + withdrawal coins from a machine, although often you can pick up + your coins from the banks tellers. You will also often need to pay + a small fee for each roll, although some banks don’t charge fees. + ` }} + </p> + + <p> + {{ .T ` + It is also important to find details regarding the deposit of + coins. Depositing coins often also requires the payment of a fee + — one which is typically more expensive than the withdrawal fees. + If depositing your coins is too expensive you can always exchange + your left over coins at shops for banknotes. It is often cheaper + (or even free) to deposit banknotes. + ` }} + </p> + + <p> + {{ .T ` + In some countries such as Austria it is even common to be able to + withdrawal new coins from your account by exchanging the left over + coins you already have. + ` }} + </p> + + <h2>{{ .T "Country-Specific Details" }}</h2> + <p> + {{ .T ` + Below you can find all sorts of country-specific information we + have regarding obtaining coin rolls. We lack a lot of information + for many of the countries, so if you have any additional + information such as your banks fees, the availability of coin roll + machines, etc. feel free to contact us! You can find our contact + information %shere%s.` + `<a href="/about" target="_blank">` `</a>` | safe + }} + </p> + <p> + {{ .T ` + Be aware of the face that the information below is prone to being + outdated, and as such may not reflect the current reality. + ` }} + </p> + + {{ $p := .Printer }} + {{ range .Countries }} + <details id={{ .Code }}> + <summary>{{ $p.T .Name }}</summary> + {{ if eq .Code "ad" }} + <p> + {{ $p.T ` + Coin rolls can be obtained from Andbank, Crèdit Andorrà, and + MoraBanc. All three of these banks require that you are a + customer to get rolls. There have however been reports of + individuals managing to get rolls without any fees and without + being a customer by simply asking kindly at the bank. + ` }} + </p> + {{ else if eq .Code "at" }} + <p> + {{ $p.T ` + The Austrian National Bank does not distribute circulated rolls + but sells rolls of commemorative coins at face value on release + as well as uncirculated rolls for all denominations. + ` }} + </p> + + <h3>Bank Austria</h3> + <p> + {{ $p.T ` + There is a fee of %s per roll. Rolls can be purchased with + cash at machines. These machines are available to everyone, + but not in all branches. Look for the ‘Münzrollengeber’ filter + option %shere%s.` + ($p.M 0.20) + `<a + href="https://filialen.bankaustria.at/de/" + target="_blank" + >` + `</a>` | safe + }} + </p> + + <h3>Erste Bank</h3> + <p> + {{ $p.T ` + There is a fee of %s per roll. You must be a customer to use + machines to get rolls. Rolls have no fees when purchased at + counters, but counters redirect you to machines if they work; + counters accept cash. You must present an Erste Bank card to + buy rolls from machines, but you can pay with cash.` + ($p.M 0.10) + }} + </p> + + <p> + {{ $p.T ` + Depositing coins is free for up to %s a day, at which point you + pay 1%% for any additional deposited coins. You must also be a + customer. Depositing coins is free for all Erste Bank + customers at Dornbirner Sparkasse with no limit.` + ($p.M 100) + }} + </p> + + <h3>Raiffeisenbank</h3> + <p> + {{ $p.T ` + There is a fee of %s per roll if you aren’t a customer, and %s + otherwise. Coin deposits are free if you’re a customer.` + ($p.M 1.00) ($p.M 0.30) + }} + </p> + + <h3>Volksbank</h3> + <p> + {{ $p.T ` + Reportedly fee-less with no need of being a customer, but this + is unconfirmed. + ` }} + </p> + {{ else if eq .Code "be" }} + <h3>Argenta</h3> + <p> + {{ $p.T "There is a %s fee with no limit on the number of rolls." + ($p.M 1.50) + }} + </p> + + <h3>{{ $p.T "Belgian Central Bank" }}</h3> + <p> + {{ $p.T ` + You can visit the Belgian Central Bank in Brussels as an EU + citizen. You can order coin rolls for no fee up to %s in + value. They seem to distribute uncirculated coins (no + commemoratives).` + ($p.M 2000) + }} + </p> + + <h3>KBC</h3> + <p> + {{ $p.T ` + Free for customers but getting coin rolls is still difficult + sometimes. Non-customers cannot get rolls. + ` }} + </p> + + <h3>Belfius</h3> + <p> + {{ $p.T ` + Free for customers when you order through their online + platform. + ` }} + </p> + {{ else if eq .Code "cy" }} + <h3>{{ $p.T "Bank of Cyprus" }}</h3> + <p> + {{ $p.T ` + At the Bank of Cyprus it is possible to buy bags of coins + without being a customer, and without paying any additional + fees. Depending on the branch you visit you may have coin roll + machine available. Do note that the bags provided by the Bank + of Cyprus are around twice as large as usual with %s bags + containing 50 coins and the other denomination bags containing + 100 coins.` + ($p.M 2.00) + }} + </p> + {{ else if eq .Code "de" }} + <p> + {{ $p.T ` + Coin roll availability may vary across banks and branches, as + well as the price. You must be a customer to purchase coin + rolls unless specified otherwise. + ` }} + </p> + + <h3>{{ $p.T "German Federal Bank (Deutsche Bundesbank)" }}</h3> + <p> + {{ $p.T ` + You can obtain regular- and commemorative coins for face value + including 5-, 10-, and 20 euro coins. You do not need to be a + customer although depending on your branch you may need to make + an appointment. The purchase of coins can only be done with + cash. + ` }} + </p> + + <h3>Deutsche Post</h3> + <p> + {{ $p.T ` + Hand-rolled coin rolls can be obtained with no additional fees. + ` }} + </p> + + <h3>Sparkasse</h3> + <p> + {{ $p.T ` + Coin rolls can be obtained for a fee of %s–%s per roll. The + amount varies per branch.` + ($p.M 0.50) ($p.M 1.50) + }} + </p> + + <h3>Volksbank</h3> + <p> + {{ $p.T ` + Coin rolls can be obtained for a fee of %s per roll.` + ($p.M 0.25) + }} + </p> + {{ else if eq .Code "ee" }} + <p> + {{ $p.T ` + Obtaining coin rolls in Estonia is typically quite difficult, + and often expensive. You also often need to make an + appointment in advance. + ` }} + </p> + + <h3>{{ $p.T "Central Bank of Estonia Museum" }}</h3> + <p> + {{ $p.T ` + You can purchase commemorative coins (even those released years + ago) at face value. It is also an interesting museum to visit + in general. + ` }} + </p> + {{ else if eq .Code "es" }} + <h3>Banco Santander</h3> + <p>{{ $p.T "Coin rolls are free but you must be a customer." }}</p> + + <h3>{{ $p.T "Bank of Spain" }}</h3> + <p> + {{ $p.T ` + You can purchase individual coins and commemorative coin rolls + (even those of other countries). You can watch %shere%s to see + how to do it.` + `<a + href="https://youtu.be/QRFuD6olH80?t=135" + target="_blank" + >` + `</a>` | safe + }} + </p> + + <h3>BBVA</h3> + <dl> + <dt>Alicante</dt> + <dd> + {{ $p.T ` + Coin rolls have a fee of %s for 5 rolls. This seems to + vary by region.` + ($p.M 2.00) + }} + </dd> + <dt>Madrid</dt> + <dd>{{ $p.T "Coin rolls have no fees." }}</dd> + </dl> + + <h3>{{ $p.T "La Caixa" }}</h3> + <p> + {{ $p.T ` + Coin rolls have no fees and can be purchased with cash. You do + not need to be a customer, although this needs to be + re-verified. + ` }} + </p> + {{ else if eq .Code "fi" }} + <p> + {{ $p.T ` + Finland has no coin roll machines, but you can find vending + machines or coin exchange machines (albeit they are rare). + ` }} + </p> + + <h3>Aktia</h3> + <p>{{ $p.T "Coin rolls can be obtained with no fees." }}</p> + + <h3>{{ $p.T "Bank of Finland" }}</h3> + <p> + {{ $p.T ` + It is probably not possible to obtain coin rolls, but this is + not confirmed. + ` }} + </p> + {{ else if eq .Code "fr" }} + <p> + {{ $p.T ` + Coin roll machines are uncommon, only some banks have them and + you need to be a customer. You may also need to order them in + advance. + ` }} + </p> + + <h3>Caisse d’Épargne</h3> + <p> + {{ $p.T ` + Coin rolls can be obtained with no fee. You must be a + customer. + ` }} + </p> + + <h3>CIC {{ $p.T "and" }} Crédit Mutuel</h3> + <p> + {{ $p.T ` + Free coin rolls if you are a customer or %s per roll if you are + not a customer. There are coin roll machines.` + ($p.M 1.00) + }} + </p> + + <h3>Crédit Agricole</h3> + <p> + {{ $p.T ` + Coin rolls can be obtained with no fee. You must be a + customer. + ` }} + </p> + + <h3>Le Crédit Lyonnais (LCL)</h3> + <p> + {{ $p.T ` + There are coin roll machines but it is not yet known if you + need to be a customer or if there are fees. + ` }} + </p> + {{ else if eq .Code "gr" }} + <h3>{{ $p.T "Bank of Greece (Τράπεζα της Ελλάδος)" }}</h3> + <p> + {{ $p.T ` + Fee-less coin rolls for everyone (you will need to show ID). + The latest commemorative coins are also sold for face value. + ` }} + </p> + + <h3>Piraeus Bank</h3> + <p> + {{ $p.T ` + Fee-less coin bags for everyone (no ID necessary). Smaller + denominations are often not given out, and the coin bags you + recieve are very large (there are reports of %s bags containing + 250 coins).` + ($p.M 1.00) + }} + </p> + {{ else if eq .Code "ie" }} + <p> + {{ $p.T ` + In general, coin rolls are available at banks with a fee of %s + per roll; rolls could potentially have no fee if you only need + a few.` + ($p.M 1.00) + }} + </p> + {{ else if eq .Code "it" }} + <h3>Banca Cambiano</h3> + <p> + {{ $p.T ` + There are coin roll machines but it is unknown if you need to + be a customer or if there are additional fees. + ` }} + </p> + + <h3>{{ $p.T "Bank of Italy" }}</h3> + <p> + {{ $p.T "Coin rolls are available to everyone." }} + </p> + {{ else if eq .Code "lt" }} + <h3>ExchangeLT</h3> + <p>{{ $p.T "Works, but with very high fees (5%% of cost)." }}</p> + + <h3>Top Exchange</h3> + <p> + {{ $p.T "Fee of %s per roll of 2 euro coins." ($p.M 2.00) }} + </p> + + <h3>Lietuvos Bankas</h3> + <p> + {{ $p.T ` + As far as we are aware, Lietuvos Bankas only distributes coin + rolls to businesses. + ` }} + </p> + + <p> + {{ $p.T ` + It may be worth checking out payout machines to exchange + banknotes into coins. + ` }} + </p> + {{ else if eq .Code "lu" }} + <h3> + {{ $p.T "Luxembourgish Central Bank (Banque Centrale du Luxembourg)" }} + </h3> + <p> + {{ $p.T ` + We currently have no information regarding regular coins, + however their webshop sells commemorative coins (for a high + premium, but better than most resellers). Commemorative coins + are also available for purchase in-person. + ` }} + </p> + + <h3>Dexia-Bank</h3> + <p> + {{ $p.T ` + You should be able to get coin rolls with no additional fees. + ` }} + </p> + {{ else if eq .Code "lv" }} + <p> + {{ $p.T ` + In general coin rolls are sold with a fee of %s per roll, but + we’re lacking a lot of information.` + ($p.M 0.60) + }} + </p> + {{ else if eq .Code "mt" }} + <h3>{{ $p.T "Bank of Valletta and HSBC Bank Malta" }}</h3> + <p> + {{ $p.T ` + You can get rolls for a fee of %s per roll. You must order + coin rolls through their online platform, and you must be a + customer.` + ($p.M 0.30) + }} + </p> + {{ else if eq .Code "nl" }} + <p> + {{ $p.T ` + Banks in the Netherlands do not carry cash, and as such it’s + not possible to obtain rolls from bank tellers. Obtaining + coins from the Dutch Central Bank (De Nederlandsche Bank) is + also not possible. If you want to obtain coin rolls you need + to use a Geldmaat coin roll machine which can be found in + specific branches of GAMMA and Karwei. Geldmaat offers a map + on their website where you can search for branches with these + machines; you can find that map %shere%s.` + `<a + href="https://www.locatiewijzer.geldmaat.nl/nl/" + target="_blank" + >` + `</a>` | safe + }} + </p> + + <p> + {{ $p.T ` + In order to be able to use a Geldmaat coin machine, you must be + a customer of either ABN AMRO, ING, or Rabobank. You also + cannot pay by cash, only card payments are allowed. All three + banks charge a withdrawal fee for getting coin rolls, which are + detailed in the list below. + ` }} + </p> + + <dl> + <dt>ABN AMRO</dt> + <dd>{{ $p.T "%s per roll." ($p.M 0.30) }}</dd> + + <dt>ING</dt> + <dd> + {{ $p.T "Base fee of %s + %s per roll." + ($p.M 7.00) ($p.M 0.35) + }} + </dd> + + <dt>Rabobank</dt> + <dd> + {{ $p.T "Base fee of %s + %s per roll." + ($p.M 7.00) ($p.M 0.50) + }} + </dd> + </dl> + + <p> + {{ $p.T ` + One- and two-cent coins have been removed from circulation and + cannot be obtained. + ` }} + </p> + {{ else if eq .Code "pt" }} + <h3>Banco Comercial Português</h3> + <p> + {{ $p.T ` + Coin bags are sold with no additional fees to bank customers. + ` }} + </p> + + <h3>{{ $p.T "Bank of Portugal (Banco de Portugal)" }}</h3> + <p> + {{ $p.T ` + Coin bags are sold with no additional fees to everyone. + ` }} + </p> + {{ else if eq .Code "si" }} + <p> + {{ $p.T "In general there is a %s fee for coin rolls." ($p.M 1.20) }} + </p> + + <h3>{{ $p.T "Bank of Slovenia (Banka Slovenije)" }}</h3> + <p> + {{ $p.T ` + You can purchase commemorative coins for face value, and coin + rolls are sold with no fees to everyone. + ` }} + </p> + {{ else if eq .Code "sk" }} + <h3>{{ $p.T "National Bank of Slovakia (Národná banka Slovenska)" }}</h3> + <p> + {{ $p.T ` + You may be able to get uncirculated rolls, but this is not yet + confirmed. + ` }} + </p> + + <h3>Tatra Banka</h3> + <p> + {{ $p.T ` + You can get an unlimited number of rolls for a %s fee. You + must be a customer of the bank.` + ($p.M 5.00) + }} + </p> + {{ else if eq .Code "va" }} + <p> + {{ $p.T ` + Ask the Pope nicely and he’ll probably give you some Vatican + coins for free. + ` }} + </p> + {{ else }} + <p> + {{ $p.T ` + We currently have no information regarding coin roll hunting in + %s.` + ($p.T .Name) + }} + </p> + {{ end }} + </details> + {{ end }} +</main> +{{ end }}
\ No newline at end of file diff --git a/src/templates/collecting-storage.html.tmpl b/src/templates/collecting-storage.html.tmpl new file mode 100644 index 0000000..8d29667 --- /dev/null +++ b/src/templates/collecting-storage.html.tmpl @@ -0,0 +1,163 @@ +{{ define "content" }} +<header> + {{ template "navbar" . }} + <h1>{{ .T "Coin Storage" }}</h1> +</header> +<main> + <p> + {{ .T ` + There are many different methods of storing your collecting, + each with their own benefits and drawbacks. This page will + describe the most common methods collectors use to store + their coins, as well as the pros and cons of each method. + ` }} + </p> + + <h2>{{ .T "Coin Albums" }}</h2> + <p> + {{ .T ` + Coin albums are one of the most popular ways of storing + coins. In a coin album you will have multiple coin sheets. + These sheets are plastic pages with slots that you can put + your coin in to keep them protected. When searching for + sheets for your album it is very important to ensure that + they do not contain any PVC, which will damage your coins. + Some albums will come with sheets already included. + ` }} + </p> + + <p> + {{ .T ` + Albums can be an affordable way to store your coins, but + higher-end albums can be a bit expensive. Also remember + to always ensure that your albums do not contain any PVC! + ` }} + </p> + + <h2>{{ .T "Coin Boxes" }}</h2> + <p> + {{ .T ` + Coin boxes are to many people the most aesthetic way to store + your coins. A coin box is comprised of various layers which + can be stacked ontop of each other. Each layer has various + holes where you can insert your coins. Typically you are + meant to store your coins in a layer encased in a coin + capsule. + ` }} + </p> + + <p> + {{ .T ` + Boxes are quite space-inefficient and are one of the most + expensive ways to store your coins, but at the same time they + offer a great visual appeal. + ` }} + </p> + + <h2>{{ .T "Coin Capsules" }}</h2> + <p> + {{ .T ` + Coin capsules are plastic capsules you can put your coin in. + They offer good protection to your coins, while still + allowing you to view all parts of your coin easily, including + the edge engravings and -inscriptions. Capsules are also far + more durable than flips, and can be opened and closed + repeatedly allowing for them to be reused. This isn’t really + possible with flips. + ` }} + </p> + + <p> + {{ .T ` + Capsules can be a bit pricey, but are reusable and are very + durable. They also come in different sizes, so make sure you + get the right size for your coins. + ` }} + </p> + + <h2>{{ .T "Coin Flips" }}</h2> + <p> + {{ .T ` + Coin flips, also known as ‘2x2’ flips by some Americans are + small cardboard flips with a plastic covered hole in the + middle for viewing. Most coin flips are stapled, meaning you + put your coin in the flip and staple it shut. These kinds of + flips are very cheap, and you can buy stacks of a few hundred + for only a few euros. If you don’t like the staples though, + you can also buy adhesive-flips that glue themselves shut. + These flips are more expensive, but also look better than + their stapled equivalents. + ` }} + </p> + + <p> + {{ .T ` + Coin slips are also pretty space efficient, and can be easily + stacked in boxes for compact storage. Many collectors also + like to write notes about their coins on the flips. There + also exist special sheets for coin albums that allow you to + put in flipped coins, but this is more expensive and less + space-efficient than simply using flips or an album without + flips. + ` }} + </p> + + <h2>{{ .T "Coin Rolls" }}</h2> + <p> + {{ .T ` + This is probably the most inexpensive way to store your + coins. If you take good care of the paper when opening your + coin rolls, you can simply reuse them for storage. Just roll + your coins back up and put some rubber bands on the ends. + You can also get reusable plastic rolls that can be opened + and closed. You will need different rolls based on the + denomination you want to store, but they are very + space-efficient. + ` }} + </p> + + <h2>{{ .T "Examples" }}</h2> + <p> + {{ .T ` + In case you’re looking for some inspiration on how to store + your collections, here are some examples. + ` }} + </p> + + <!-- TODO: Can we use an AVIF here? --> + {{ template "example-image" + (tuple (.T "Flips in a case") + "/storage/flips-in-case.jpg") }} + {{ template "example-image" + (tuple (.T "Capsules in a case") + "/storage/random-in-box.avif") }} + <!-- {{ template "example-image" + (tuple (.T "Flips and capsules in a box") + "/storage/coins-in-album.avif") }} --> + {{ template "example-image" + (tuple (.T "Coins in an album") + "/storage/coins-in-album-labeled.avif") }} + {{ template "example-image" + (tuple (.T "Coins in an album with labels") + "/storage/coins-in-album-labeled.avif") }} + {{ template "example-image" + (tuple (.T "Coins in a reusable roll") + "/storage/coins-in-roll.avif") }} + {{ template "example-image" + (tuple (.T "Flips in an album") + "/storage/flips-in-album.avif" )}} +</main> +{{ end }} + +{{ define "example-image" }} +<details> + <summary>{{ index . 0 }}</summary> + <div class="design-container"> + <img + class="big" + src={{ index . 1 }} + alt={{ index . 0 }} + > + </div> +</details> +{{ end }}
\ No newline at end of file diff --git a/src/templates/collecting-vending.html.tmpl b/src/templates/collecting-vending.html.tmpl new file mode 100644 index 0000000..2bfea22 --- /dev/null +++ b/src/templates/collecting-vending.html.tmpl @@ -0,0 +1,163 @@ +{{ define "content" }} +<header> + {{ template "navbar" . }} + <h1>{{ .T "Euro Coin Collecting" }}</h1> +</header> +<main> + <h2>{{ .T "What is Vending Machine Hunting?" }}</h2> + <p> + {{ .T ` + ‘Vending machine hunting’ is a strategy of collecting coins + whereby you continuously insert coins into a vending machine + and cancel the transaction by pressing the return button. + When the vending machine returns your coins to you, you will + often get different coins from the ones you put in, and you + can repeat this process until you’ve searched through every + coin in the machine. + ` }} + </p> + + <h2>{{ .T "The Test Coins" }}</h2> + <p> + {{ .T ` + First, you want to make sure the vending machine you come + across actually gives back change — sometimes they don’t! + Throw in a 10 cent coin and press the return button. If it + doesn’t give the coin back, you can move on to the next + machine; there’s a high chance it won’t return higher + denominations either. Next throw in a random 2 euro coin and + press the return button. You should do this because vending + machines may not return 2 euro coins, but rather 1 euro- or + 50 cent coins instead. It’s better to find out immediately + as opposed to later once you’ve already put in all of your 2 + euro coins. + ` }} + </p> + + <h2>{{ .T "The Stopper" }}</h2> + <p> + {{ .T ` + We want to be able to know when we’ve gone through all the + coins in the vending machine. To do this, take out a coin + and mark it with something (drawing on it with a Sharpie + works well), then put it into the machine. Next time you get + the same coin back, you know you’ve gone through everything. + ` }} + </p> + + <h2>{{ .T "Rejected Stoppers and Coins" }}</h2> + <p> + {{ .T ` + Sometimes you may throw a stopper in, but you hear a ‘clunk’ + sound, as if the coin was dropped into a box (normally adding + a coin should be silent after you throw it in). This means + the coin was not added to the stack properly, and so it will + not be returned. Pay attention to this noise, because you + won’t be getting the stopper back! Throw in another marked + coin instead until the machine accepts the coin. + ` }} + </p> + + <h2>{{ .T "(Non-)Merging Machines" }}</h2> + <p> + {{ .T ` + We generally identify between two main types of vending + machines. + ` }} + </p> + <dl> + <dt>{{ .T "Merging" }}</dt> + <dd> + {{ .T ` + The vending machine merges change together. For example + if you throw in five 50 cent coins, the machine returns + either two 1 euro coins and one 50 cent coin or one 2 + euro and one 50 cent coin. This usually means you can + hunt 2 euro coins very quickly but other denominations + only once at a time. A good tip is to throw in an odd + number of euros and 80 cents if you want to search + through all denominations. + ` }} + </dd> + <dt>{{ .T "Non-Merging" }}</dt> + <dd> + {{ .T ` + The vending machine does not merge change together. This + means if you throw in five 50 cent coins it will return + five 50 cent coins. This makes it very easy to hunt a + large amount of a specific denomination. + ` }} + </dd> + </dl> + + <h2>{{ .T "Limits" }}</h2> + <p> + {{ .T ` + There are some limits to vending machine hunts which you need + to be aware of. + ` }} + </p> + <dl> + <dt>{{ .T "Maximum Input Limit" }}</dt> + <dd> + {{ .T ` + Some machines have a maximum amount you can throw in, and + will reject anything higher. For example machines with a + max limit of five euros will reject any additional coins + if you throw in five euros. You can try to go above the + limit if you throw in, say, %s and then another one- or + two euro coin; the machine will probably accept it. + ` (.Printer.M 4.80) }} + </dd> + <dt>{{ .T "Maximum Change Limit" }}</dt> + <dd> + <p> + {{ .T ` + Some machines will either give back large amounts of + change in bills or will not give back large amounts + of change at all (usually cigarette machines). Read + the labels on all machines carefully since these + limits are usually written there. + ` }} + </p> + <p> + {{ .T ` + Even if no limits are listed, it’s still advised that + you exercise caution: it is not uncommon for a + vending machine to steal your money. In the case + that a vending machine does steal your money, look + for a label on the machine that contains a support + number. + ` }} + </p> + <p> + {{ .T ` + For information on Austrian cigarette machines, see + the ‘%sCigarette Machines%s’ section. + ` `<a href="#ciggy">` `</a>` | safe }} + </p> + </dd> + </dl> + + <h2 id="ciggy">{{ .T "Cigarette Machines" }}</h2> + <p> + {{ .T ` + In some countries where cigarette machines are legal, you can + hunt through them as well. Unless you’re in Malta, you must + verify your age on them by either sliding an ID card through + a sensor or holding a debit card on an RFID scanner; you must + do this for every cycle. Sometimes you must also select + something to purchase, throw in less money than the cost, and + then cancel the purchase. Note that most cigarette machines + in Austria have a %s max change limit. + ` (.Printer.M 4.90) }} + </p> + <p> + {{ .T ` + For RFID scanner machines it helps to wear a glove and slide + a debit card into the back of it so you can easily use both + hands and don’t have to fumble with a card and coins. + ` }} + </p> +</main> +{{ end }}
\ No newline at end of file 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 |