2024-11-13 21:14:37 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ .Content }}
|
2024-11-15 15:12:36 +00:00
|
|
|
{{$isTags := strings.Contains .Title "Tags"}}
|
2024-11-15 18:07:17 +00:00
|
|
|
{{if $isTags}}
|
|
|
|
<ul class="post-tags">
|
|
|
|
{{end}}
|
|
|
|
{{if $isTags}}
|
|
|
|
{{else}}
|
|
|
|
<ul class="page-list">
|
|
|
|
{{end}}
|
2024-11-13 21:14:37 +00:00
|
|
|
{{ range .Pages }}
|
2024-11-15 12:16:56 +00:00
|
|
|
<li>
|
2024-11-15 15:12:36 +00:00
|
|
|
<h2 class="center"><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
2024-11-15 22:41:06 +00:00
|
|
|
{{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}}
|
2024-11-13 21:14:37 +00:00
|
|
|
{{ .Summary }}
|
2024-11-15 15:12:36 +00:00
|
|
|
{{if $isTags}}
|
|
|
|
{{else}}
|
2024-11-15 12:16:56 +00:00
|
|
|
<a href="{{ .RelPermalink }}">Read more...</a>
|
2024-11-15 15:12:36 +00:00
|
|
|
{{end}}
|
2024-11-15 12:16:56 +00:00
|
|
|
</li>
|
2024-11-13 21:14:37 +00:00
|
|
|
{{ end }}
|
2024-11-15 12:16:56 +00:00
|
|
|
</ul>
|
|
|
|
{{ end }}
|