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
|
{{ define "content" }}
<header>
{{ template "navbar" . }}
<h1>{{ .Get "About Us" }}</h1>
</header>
<main>
<h2>{{ .Get "Open Source" }}</h2>
<p>
{{ .Get "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found {LinkGit:L}here{-:E}. This site is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the full freedom to do whatever you would like with any of the content on this site."
(map "LinkGit" "https://git.thomasvoss.com/www.euro-cash.eu"
"LinkBSD" "https://opensource.org/license/0bsd") }}
</p>
<h2>{{ .Get "Contact Us" }}</h2>
<p>
{{ .Get "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. Should that be the case, don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically inclined, but if not you can always send an email to {Email:e} or contact ‘@onetruemangoman’ on Discord."
(map "Email" "mail@euro-cash.eu") }}
</p>
<h2>{{ .Get "Special Thanks" }}</h2>
<table>
<thead>
{{/* TRANSLATORS: As in ‘Development of the site’ */}}
<th scope="col">{{ .Get "Development" }}</th>
<th scope="col">{{ .Get "Research" }}</th>
<th scope="col">{{ .Get "Translations" }}</th>
</thead>
<tbody>
<tr>
<td>
Jessika Wexler,
Lyyli Savolainen,
Ralf Nadel
</td>
<td>
Elín Hjartardóttir,
Storm Sørensen
</td>
<td>
<span data-tooltip={{ .Get "British- & American English" }}>Thomas Voss</span>,
<span data-tooltip={{ .Get "Icelandic" }}>Védís Indriðadóttir</span>
</td>
</tr>
</tbody>
</table>
</main>
{{ end }}
|