grannysmith-technical/layouts/_default/single.html

18 lines
443 B
HTML
Raw Permalink Normal View History

{{ define "head" }}
<link rel="stylesheet" href="/syntax_highlighting.css">
{{ end }}
{{ define "main" }}
{{ partial "header.html" }}
<article>
<header>
<h1>{{ .Title }}</h1>
</header>
{{ .Content }}
<footer>
{{ partial "see_also" . }}
{{ partial "categories.html" }}
{{ partial "content_notices.html" . }}
</footer>
</article>
{{ end }}