18 lines
443 B
HTML
18 lines
443 B
HTML
|
{{ 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 }}
|