blob: 06249312be83948c8efbdc6e80535c2df280e8c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{{ define "content" }}
<header>
{{ template "navbar" . }}
<h1>{{ .Get "German Euro Coin Designs" }}</h1>
</header>
<main>
<p>
{{ .Get "The Estonian euro coins all feature the same design across all eight denominations. The country’s outline is displayed above the text “EESTI”, the country’s name in its own language." }}
</p>
<div class="design-container">
<img
alt="{{ .Get `Estonian €1 coin` }}"
src="/designs/ee-100-1.avif"
>
</div>
</main>
{{ end }}
|