From 579b7b3d0b46d45432a7359a417b9f92be934254 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sat, 21 Sep 2024 11:42:19 +0200 Subject: Add the /coins/designs/nl page --- src/templates.go | 15 +++++---- src/templates/coins-designs-nl.html.tmpl | 56 ++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+), 7 deletions(-) create mode 100644 src/templates/coins-designs-nl.html.tmpl diff --git a/src/templates.go b/src/templates.go index 787fd04..bf65532 100644 --- a/src/templates.go +++ b/src/templates.go @@ -21,13 +21,14 @@ var ( notFoundTmpl = buildTemplate("404") errorTmpl = buildTemplate("error") templates = map[string]*template.Template{ - "/": buildTemplate("index"), - "/about": buildTemplate("about"), - "/coins": buildTemplate("coins"), - "/coins/designs": buildTemplate("coins-designs"), - "/coins/mintages": buildTemplate("coins-mintages"), - "/jargon": buildTemplate("jargon"), - "/language": buildTemplate("language"), + "/": buildTemplate("index"), + "/about": buildTemplate("about"), + "/coins": buildTemplate("coins"), + "/coins/designs": buildTemplate("coins-designs"), + "/coins/designs/nl": buildTemplate("coins-designs-nl"), + "/coins/mintages": buildTemplate("coins-mintages"), + "/jargon": buildTemplate("jargon"), + "/language": buildTemplate("language"), } funcmap = map[string]any{ "denoms": denoms, diff --git a/src/templates/coins-designs-nl.html.tmpl b/src/templates/coins-designs-nl.html.tmpl new file mode 100644 index 0000000..2857c16 --- /dev/null +++ b/src/templates/coins-designs-nl.html.tmpl @@ -0,0 +1,56 @@ +{{ define "content" }} +
+ {{ template "navbar" . }} +

{{ .T "Dutch Euro Coin Designs" }}

+
+
+
+ Netherlands Queen Beatrix €0.50 Coin + Netherlands King Willem-Alexander €0.50 Coin +
+
+ Netherlands Queen Beatrix €1 Coin + Netherlands King Willem-Alexander €1 Coin +
+

+ {{ .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. + ` }} +

+

+ {{ .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. + ` }} +

+

+ + {{ .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. + ` }} +

+
+{{ end }} -- cgit v1.2.3