blob: d2d60dd73b6753352e7c206ba6d5084c77ceaa44 (
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
|
{{/*
SPDX-FileCopyrightText: 2022 Ngô Ngọc Đức Huy <huyngo@disroot.org>
SPDX-License-Identifier: MIT
*/}}
{{ define "main" }}
<article>
<header>
<h1>{{ trim .Title " " }}</h1>
{{ i18n "word count" . }}
({{ i18n "reading time" .ReadingTime }})
{{ partial "post-language-switcher.html" . }}
{{ partial "post-navigation.html" . }}
</header>
{{ .Content }}
</article>
{{ partial "single-extra.html" }}
{{ partial "post-navigation.html" . }}
{{ end }}
|