2022-11-11 17:41:58 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
|
|
<title>{{ .Title }} | {{ .Site.Title }}</title>
|
2022-12-05 04:16:01 +00:00
|
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
|
|
{{ template "_internal/opengraph.html" . }}
|
|
|
|
<link href='{{"/css/common.css" | relURL}}' rel="stylesheet" media="all"/>
|
|
|
|
{{ if .Params.Translation }}
|
|
|
|
<link href='{{"/css/tables.css" | relURL}}' rel="stylesheet" media="all"/>
|
|
|
|
{{- else -}}
|
|
|
|
<link href='{{"/css/clean.css" | relURL }}' rel="stylesheet" media="all"/>
|
2022-12-16 04:26:56 +00:00
|
|
|
{{- end }}{{ range .Site.Params.Fediverse }}
|
|
|
|
<link rel="me" href="{{ . }}"/>{{ end }}
|
2022-11-11 17:41:58 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<nav>
|
2022-11-13 16:17:46 +00:00
|
|
|
<ul>{{ range .Site.Menus.main }}
|
|
|
|
<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>{{ end }}
|
2022-11-11 17:41:58 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|
2022-11-14 05:41:44 +00:00
|
|
|
{{ block "main" . }} {{ end }}
|
2022-11-11 17:41:58 +00:00
|
|
|
<hr/>
|
|
|
|
<footer>
|
2023-10-12 13:29:48 +00:00
|
|
|
<p>Copyright © {{ now.Format "2006" }} Síle Ekaterin Liszka, under <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0 International</a>.</p>
|
2022-11-11 17:41:58 +00:00
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|