summaryrefslogtreecommitdiffhomepage
path: root/template/coins_designs.templ
blob: de474823602da18a010932cc1a6f89eda71aef54 (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
package template

import (
	"fmt"
	"strings"

	"git.thomasvoss.com/euro-cash.eu/lib"
)

var varietiesLinkStart = `<a href="/coins/varieties">`

func makeURL(c lib.Country) templ.SafeURL {
	url := fmt.Sprintf("/coins/designs/%s", c.Code)
	return templ.SafeURL(url)
}

templ CoinsDesigns() {
	{{ p := ctx.Value("printer").(lib.Printer) }}
	<header>
		@navbar()
		<h1>{ p.T("Euro Coin Designs") }</h1>
	</header>
	<main>
		<p>
			@templ.Raw(p.T("Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.", varietiesLinkStart, linkEnd))
		</p>
		<hr/>
		<div class="country-grid">
			for _, c := range lib.SortedCountries(p) {
				<a
					role="button"
					class="outline"
					data-code={ strings.ToUpper(c.Code) }
					href={ makeURL(c) }
				>
					{ p.T(c.Name) }
				</a>
			}
		</div>
	</main>
}