blob: 00cae5cb306a73f9bc970edb1af568be3138a80e (
plain) (
blame)
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
|
{{define "index.html"}}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{.SiteTitle}}</title>
<link rel="icon" href="/assets/static/image.png" type="image/png">
<link rel="stylesheet" href="/assets/styles/main.css">
</head>
<body>
<main>
<img src="/assets/static/image.png" alt="nebb" id="logo">
<form class="search" method="GET" action="/">
<input type="search" name="q" required value="{{.Query}}" placeholder="...">
<button type="submit">Søk</button>
{{if .Query}}<a href="/">Tøm</a>{{end}}
</form>
{{if .ActiveTag}}
<p class="filter-info">Emne: <strong>{{.ActiveTag}}</strong> <a href="/">tøm</a></p>
{{end}}
{{if .Posts}}
<ul class="post-list">
{{range .Posts}}
<li>
<a href="/{{.Slug}}">{{.Title}}</a>
<time>{{.Date}}</time>
{{if .Tags}}
<div class="tags">
emne: {{range .Tags}}<a href="/?tag={{.}}" class="tag">{{.}}</a> {{end}}
</div>
{{end}}
</li>
{{end}}
</ul>
{{else}}
<p class="empty">Dessverre.</p>
{{end}}
</main>
</body>
</html>
{{end}}
|