Template
1
0
Fork 0
goth.stack/pages/templates/post.html

23 lines
375 B
HTML

{{define "title"}}
GOTH Stack // Post // {{.Name}}
{{end}}
{{define "description"}}
{{.Description}}
{{end}}
{{define "navcontent"}}
GOTH Stack // Post // {{.Name}}
{{end}}
{{define "head"}}
<link rel="stylesheet" href="/public/css/styles.css" />
{{end}}
{{define "main"}}
{{.Content}}
{{end}}
{{define "foot"}}
<script src="/public/js/hyperscript.js"></script>
{{end}}