18 lines
362 B
HTML
18 lines
362 B
HTML
{{ template "_base.html" . }}
|
|
{{ define "title" }}News{{ end }}
|
|
|
|
{{ define "content" }}
|
|
|
|
<div class="pure-u-1">
|
|
This page contains news items from the distillery.
|
|
</div>
|
|
|
|
{{range .Items}}
|
|
<div class="pure-u-1">
|
|
<h2 id="{{.ID}}">{{.Title}}</h3>
|
|
<b>{{ .Date.Format "2006-01-02" }}</b>
|
|
{{ .Content }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ end }}
|