diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-07-23 22:18:23 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-07-23 22:18:23 +0200 |
commit | cd42aaf59b1bd950f11bccdb04b8bca2e29b63ea (patch) | |
tree | f3891b1b56cfda61dc3ecf288c84c6b4de27b35b /src/templates/banknotes.html.tmpl | |
parent | 39ef34912e46019e72bf342075d12d6d66416ded (diff) |
More some pages to the new translations system
Diffstat (limited to 'src/templates/banknotes.html.tmpl')
-rw-r--r-- | src/templates/banknotes.html.tmpl | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/src/templates/banknotes.html.tmpl b/src/templates/banknotes.html.tmpl index 1a171db..7349dcf 100644 --- a/src/templates/banknotes.html.tmpl +++ b/src/templates/banknotes.html.tmpl @@ -1,14 +1,11 @@ {{ define "content" }} <header> {{ template "navbar" . }} - <h1>{{ .T "Euro Banknotes" }}</h1> + <h1>{{ .Get "Euro Banknotes" }}</h1> </header> <main> <p> - {{ .T ` - On this section of the site you can find everything there is to - know about the banknotes of the Eurozone. - ` }} + {{ .Get "On this section of the site you can find everything there is to know about the banknotes of the Eurozone." }} </p> <hr> <section> @@ -16,30 +13,30 @@ <a class="no-deco" href="/banknotes/designs"> <article> <header> - <h3>{{ .T "Designs" }}</h3> + <h3>{{ .Get "Designs" }}</h3> </header> <main> - {{ .T "View the different Euro-note designs!" }} + {{ .Get "View the different Euro-note designs!" }} </main> </article> </a> <a class="no-deco" href="/banknotes/codes"> <article> <header> - <h3>{{ .T "Location Codes" }}</h3> + <h3>{{ .Get "Location Codes" }}</h3> </header> <main> - {{ .T "Find out where your notes were printed!" }} + {{ .Get "Find out where your notes were printed!" }} </main> </article> </a> <a class="no-deco" href="/banknotes/test"> <article> <header> - <h3>{{ .T "Test Notes" }}</h3> + <h3>{{ .Get "Test Notes" }}</h3> </header> <main> - {{ .T "Learn about the special test notes!" }} + {{ .Get "Learn about the special test notes!" }} </main> </article> </a> |