19034a026e
Blog with contact form and newsletter signup, structured like the other Reground-hosted sites but with its own visual identity.
15 lines
334 B
HTML
15 lines
334 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
<ul class="post-list">
|
|
{{ range .Pages }}
|
|
<li class="post-list-item">
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
{{ if not .Date.IsZero }}
|
|
<span class="post-date">{{ .Date.Format "January 2, 2006" }}</span>
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|