justice/layouts/_default/single.html

20 lines
No EOL
330 B
HTML

<!DOCTYPE html>
<html>
{{partial "head" .}}
<body>
{{partial "header" .}}
<main>
<article>
{{ if .Content}}
{{.Content}}
{{end}}
{{if .GetTerms "issues"}}
{{ partial "issues" .}}
{{end}}
</article>
</main>
{{partial "footer" .}}
</body>
</html>