blob: 37e03a5b33da66ae8d3f71de6c6271222690a4eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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" "https://en.wikipedia.org/wiki/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 }}
|