diff options
Diffstat (limited to 'src/templates/coins-designs-de.html.tmpl')
-rw-r--r-- | src/templates/coins-designs-de.html.tmpl | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/src/templates/coins-designs-de.html.tmpl b/src/templates/coins-designs-de.html.tmpl new file mode 100644 index 0000000..702b5fc --- /dev/null +++ b/src/templates/coins-designs-de.html.tmpl @@ -0,0 +1,68 @@ +{{ define "header" }} +{{ template "header-navbar" . }} +{{ end }} + +{{ define "content" }} +<header> + {{ template "navbar" . }} + <h1>{{ .Get "German Euro Coin Designs" }}</h1> +</header> +<main> + {{ $deargs := (map "GermanStart" `<span lang="de"><em>` "GermanEnd" "em,span") }} + + <div class="design-container"> + <img alt="{{ .Get `German €0.01 coin` }}" src="/designs/de-001-1.avif"> + <img alt="{{ .Get `German €0.10 coin` }}" src="/designs/de-010-1.avif"> + <img alt="{{ .Get `German €1 coin` }}" src="/designs/de-100-1.avif"> + </div> + <p> + {{ .Get "The German euro coins feature three different designs. A unique feature of German euro coins are the mint marks on each coin that denote in which city a given coin was minted. Germany has five active mints that produce Euro coins, which are denoted in the table below." }} + </p> + + <table> + <thead> + <tr> + <th>{{ .Get "City" }}</th> + <th>{{ .Get "Mintmark" }}</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ .GetC "Berlin" "Place Name" }}</td> + <td>A</td> + </tr> + <tr> + <td>{{ .GetC "Munich" "Place Name" }}</td> + <td>D</td> + </tr> + <tr> + <td>{{ .GetC "Stuttgart" "Place Name" }}</td> + <td>F</td> + </tr> + <tr> + <td>{{ .GetC "Karlsruhe" "Place Name" }}</td> + <td>G</td> + </tr> + <tr> + <td>{{ .GetC "Hamburg" "Place Name" }}</td> + <td>J</td> + </tr> + </tbody> + </table> + + <p> + {{ .Get "The 1c, 2c and 5c coins display an oak twig similar to that found on the former Pfennig coins of the German Mark (Germany’s pre-Euro currency). The mint mark and year are located on the left- and right-hand sides of the oak twig’s stem." }} + </p> + <p> + {{ .Get "The 10c, 20c and 50c coins feature the Brandenburg Gate, a symbol of Berlin and of Germany as a whole, but also a symbol of German division and unity. The mint mark is located below the year." }} + </p> + <p> + {{ .Get "The €1 and €2 coins feature an interpretation of the German Federal Eagle (German: ‘{GermanStart:r}Bundesadler{GermanEnd:E}’). The eagle is a common motif in German heraldry — including in the {Link:L}German coat of arms{-:E} — and represents strength and freedom. The mint mark is located to the right of the year." + (map "Link" (.Printer.Wikipedia "Coat of arms of Germany")) $deargs }} + </p> + <p> + <!-- TODO: Get a picture of the edge-inscription --> + {{ .Get "The €2 coin also features an edge-inscription of Germany’s national motto and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND FREEDOM’)." $deargs }} + </p> +</main> +{{ end }}
\ No newline at end of file |