blob: b9dba401ceb51ba5c33f0c3f39e85e37aefaee59 (
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
|
{{ define "main" }}
<header>{{ partial "header.html" . }}</header>
<h1>{{ .Title }}</h1>
<time datetime="{{ .Date | time.Format "2006-01-02" }}">
{{ .Date | time.Format "2006-01-02" }}
</time>
<div class="post-content">
{{ .Content | safeHTML}}
</div>
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
<link rel="stylesheet" href="/css/main.css" />
<div id="waline"></div>
<script type="module">
import { init } from 'https://unpkg.com/@waline/client@v3/dist/waline.js';
init({
el: '#waline',
serverURL: ''
});
</script>
<footer>
{{ partial "footer.html" . }}
</footer>
{{ end }}
|