justice/layouts/_default/single.html

20 lines
330 B
HTML
Raw Normal View History

2023-12-27 20:47:48 -05:00
<!DOCTYPE html>
<html>
{{partial "head" .}}
<body>
{{partial "header" .}}
<main>
2024-02-04 01:43:07 -05:00
<article>
2023-12-27 20:47:48 -05:00
{{ if .Content}}
2024-02-04 01:43:07 -05:00
{{.Content}}
2023-12-27 20:47:48 -05:00
{{end}}
2024-02-04 01:43:07 -05:00
{{if .GetTerms "issues"}}
{{ partial "issues" .}}
{{end}}
</article>
2023-12-27 20:47:48 -05:00
</main>
{{partial "footer" .}}
</body>
</html>