aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/base.html
blob: c994cac28ec9b61b9a9d7ad08d34879d20723ae0 (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
<!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">
</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>