aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/single.html
blob: 8d54539418215d042fb7e1433f91f5ce45d258c7 (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
{{ define "main" }} 
	<header>{{ partial "header.html" . }}</header>
	   <h2>{{ .Title }}</h2> 
<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 }}