blob: 8466bc0937a157f0680dd2373a9121123bd59325 (
plain)
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
|
<!doctype html>
<html lang="fr" prefix="og: https://ogp.me/ns/article#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ .Title }}</title>
<link rel="stylesheet" href="{{ assets "styles.css" }}">
<link rel="shortcut icon" href="{{ static .Logo.Favicon }}">
<meta property="description" content="{{ .Description }}" />
<!-- Open Graph -->
<meta property="og:title" content="{{ .Title }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://{{ .Domain }}{{ .URL }}" />
<meta property="og:image" content="https://{{ .Domain }}{{ static .Image }}" />
<meta property="og:description" content="{{ .Description }}" />
<meta property="og:local" content="fr_FR" />
<meta property="og:site_name" content="{{ .Name }}" />
{{ if ne .PubDate "" }}<meta property="article:published_time" content="{{ .PubDate }}">{{ end }}
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="{{ .Domain }}" />
<meta property="twitter:url" content="https://{{ .Domain }}{{ .URL }}/" />
<meta name="twitter:title" content="{{ .Title }}" />
<meta name="twitter:description" content="{{ .Description }}" />
<meta name="twitter:image" content="https://{{ .Domain }}{{ static .Image }}" />
</head>
<body>
<header>
<img src="{{ static .Logo.Header }}" alt="Logo">
<nav>
{{ range .Links }}<a href="{{ .URL }}">{{ .Name }}</a>{{end}}
</nav>
</header>
{{ if .Article }}
<main>{{ template "body" . }}</main>
{{ else }}
<article>{{ template "body" . }}</article>
{{ end }}
<footer>
<p>© 2025 - Anhgelus Morthuuzh</p>
<p>« {{ .Quote }} »</p>
<p><a href="/legal">Mentions légales</a>, <a href="https://git.anhgelus.world/anhgelus/small-web">Code source</a>.</p>
</footer>
</body>
</html>
|