35 lines
870 B
HTML
Raw Normal View History

2021-07-18 09:35:42 -04:00
<!DOCTYPE html>
2022-02-15 17:12:08 -05:00
<html lang="{{ .Lang }}">
2021-07-18 09:35:42 -04:00
{{ partial "head.html" . }}
<body>
2021-08-27 14:08:11 -04:00
{{partial "search.html" .}}
2021-07-18 09:35:42 -04:00
<div class="singlePage">
<!-- Begin actual content -->
2022-07-13 14:32:32 -07:00
{{partial "header.html" .}}
<article>
2021-12-23 14:32:47 -08:00
{{if .Title}}<h1>{{ .Title }}</h1>{{end}}
2021-12-27 17:28:53 -05:00
<p class="meta">
{{ i18n "last_updated" }} {{ partial "date-fmt.html" .}}
2022-07-06 06:39:29 +08:00
{{ partial "github.html" . }}
2021-12-27 17:28:53 -05:00
</p>
2021-12-27 19:35:42 -05:00
<ul class="tags">
{{ range (.GetTerms "tags") }}
2023-01-04 09:10:25 +06:00
<li><a href="{{ .Permalink }}">
{{if (eq $.Site.Language.Lang "en")}}
{{ .LinkTitle | humanize }}
{{else}}
{{ .LinkTitle }}
{{end}}
</a>
</li>
2021-12-27 19:35:42 -05:00
{{ end }}
</ul>
2022-05-03 08:47:42 -07:00
{{partial "toc.html" .}}
2022-04-02 20:06:31 -07:00
{{partial "textprocessing.html" . }}
2021-07-18 09:35:42 -04:00
</article>
{{partial "footer.html" .}}
</div>
</body>
</html>