.github
assets
content
data
layouts
_default
_markup
baseof.html
section.html
single.html
taxonomy.html
term.html
partials
404.html
index.html
static
.gitignore
.hugo_build.lock
.prettierrc
CODE_OF_CONDUCT.md
LICENSE.txt
Makefile
README.md
config.toml
screenshot.png
29 lines
764 B
HTML
29 lines
764 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Lang }}">
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
{{partial "search.html" .}}
|
|
<div class="singlePage">
|
|
<!-- Begin actual content -->
|
|
{{partial "header.html" .}}
|
|
<article>
|
|
{{if .Title}}<h1>{{ .Title }}</h1>{{end}}
|
|
<p class="meta">
|
|
Last updated {{if ne .Date .Lastmod}}{{ .Lastmod.Format "January 2, 2006" }}{{else}}Unknown{{end}}.
|
|
{{ partial "github.html" . }}
|
|
</p>
|
|
<ul class="tags">
|
|
{{ range (.GetTerms "tags") }}
|
|
<li><a href="{{ .Permalink }}">{{ .LinkTitle | humanize }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
{{partial "toc.html" .}}
|
|
{{partial "textprocessing.html" . }}
|
|
</article>
|
|
{{partial "footer.html" .}}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|