aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/base.html
blob: 922273e19926c80717ba17e9ed9781f0fc0cee5e (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
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="fr">
<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">
    <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="{{ .Title }}'s Now page" />
    <!-- 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="https://cdn.anhgelus.world/pfp.jpg" alt="pfp">
    <nav>
        <a href="">Home</a>
        <a href="">Logs</a>
        <a href="">Work</a>
        <a href="">Philosophy</a>
        <a href="">Lien 1</a>
        <a href="">Lien 2</a>
        <a href="">Lien 3</a>
        <a href="">Lien 4</a>
    </nav>
</header>
{{ if .Article }}
<main>
    {{ template "body" . }}
</main>
{{ else }}
<article>
    {{ template "body" . }}
</article>
{{ end }}
<footer>
    <p>&copy; 2025 - Anhgelus Morthuuzh</p>
    <p>«&thinsp;Une citation&thinsp;»</p>
    <p><a href="">Mentions légales</a></p>
</footer>
</body>
</html>