summaryrefslogtreecommitdiffhomepage
path: root/template.old/coins_designs_nl.templ
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-13 13:01:48 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-13 13:01:48 +0200
commit548090e67f66acf84385c4152ca464e52d3e3319 (patch)
tree9b6de528bd7b0aa63362fa83f5c8e6a97f68a5d8 /template.old/coins_designs_nl.templ
parenta1d809960bee74df19c7e5fc34ffd1e4757cfdcb (diff)
Migrate away from templ and towards html/template
Diffstat (limited to 'template.old/coins_designs_nl.templ')
-rw-r--r--template.old/coins_designs_nl.templ43
1 files changed, 43 insertions, 0 deletions
diff --git a/template.old/coins_designs_nl.templ b/template.old/coins_designs_nl.templ
new file mode 100644
index 0000000..92c01be
--- /dev/null
+++ b/template.old/coins_designs_nl.templ
@@ -0,0 +1,43 @@
+package template
+
+import "git.thomasvoss.com/euro-cash.eu/src"
+
+templ CoinsDesignsNl() {
+ {{ p := ctx.Value("printer").(lib.Printer) }}
+ <header>
+ @navbar()
+ <h1>{ p.T("Dutch Euro Coin Designs") }</h1>
+ </header>
+ <main>
+ <div class="design-container">
+ <img
+ src="/designs/nl-050-beatrix.png"
+ alt="Netherlands Queen Beatrix €0.50 Coin"
+ />
+ <img
+ src="/designs/nl-050-willem-alexander.png"
+ alt="Netherlands King Willem-Alexander €0.50 Coin"
+ />
+ </div>
+ <div class="design-container">
+ <img
+ src="/designs/nl-100-beatrix.png"
+ alt="Netherlands Queen Beatrix €1 Coin"
+ />
+ <img
+ src="/designs/nl-100-willem-alexander.png"
+ alt="Netherlands King Willem-Alexander €1 Coin"
+ />
+ </div>
+ <p>
+ { p.T("From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.") }
+ </p>
+ <p>
+ { p.T("Coins featuring both monarchs contain text reading ‘BEATRIX KONINGIN DER NEDERLANDEN’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘Willem-Alexander Koning der Nederlanden’ (‘Willem-Alexander King of the Netherlands’) respectively.") }
+ </p>
+ <p>
+ <!-- TODO: Link to the relief description in the Jargon page -->
+ { p.T("The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower relief than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.") }
+ </p>
+ </main>
+}