30 lines
723 B
HTML
30 lines
723 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
{{$isTags := strings.Contains .Title "Tags"}}
|
|
{{if $isTags}}
|
|
<ul class="post-tags">
|
|
{{end}}
|
|
{{if $isTags}}
|
|
{{else}}
|
|
<ul class="page-list">
|
|
{{end}}
|
|
{{ range .Pages }}
|
|
<li>
|
|
<h2 class="center"><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
|
{{if $isTags}}
|
|
{{else}}
|
|
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} {{
|
|
$dateHuman := .Date | time.Format ":date_long" }}
|
|
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
|
|
{{end}}
|
|
{{ .Summary }}
|
|
{{if $isTags}}
|
|
{{else}}
|
|
<a href="{{ .RelPermalink }}">Read more...</a>
|
|
{{end}}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|