Blob: article.html

Blob id: cc01c459b8c719a293ac1c6ac98c4e38ee52a531

Size: 1.2 KB

 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
{{ define "article.html" }}
<html lang="fi">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>{{.Article.Title}}</title>
	<script src="/static/theme.js"></script>
	<link rel="stylesheet" href="/static/styles.css">
</head>
<body>
	<header>
        <nav style="display: flex; gap: 20px;">
            <a href="/">
                Uutiset
            </a>
            {{ range .Categories}}
				<a href="/{{ .Name }}">{{ .Name }}</a>
			{{ end }}
            <a href="/">
                Sanajuuri
            </a>
        </nav>
        <nav id="theme-nav">
            <button id="theme-button" class="theme-button">mirri
            </button>
        </nav>
    </header>
	<main class="article-container" style="max-width: 800px;">
        <article>
            <img src="{{.Article.Picture}}" class="uutis-kuva">
            <div>
                <h2>
                    {{ .Article.Title }}
                </h2>
                <p>
                    {{ .Article.Description}}
                </p>
            </div>
            <p>
                {{ .Article.Content }}
            </p>
        </article>
	</main>
</body>
</html>
{{ end }}