You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
381 B
HTML
19 lines
381 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
<header>
|
|
<h1>{{.Title}}</h1>
|
|
</header>
|
|
{{.Content}}
|
|
</article>
|
|
<ul>
|
|
{{ range .Pages }}
|
|
<li>
|
|
{{ .PublishDate.Format "2006-01-02" }} –
|
|
<a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</main>
|
|
{{ end }}
|