46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{ partial "header.html" . }}
|
|
|
|
<body>
|
|
<div class="container wrapper tags">
|
|
{{ partial "head.html" . }}
|
|
|
|
<h1 class="page-title">Tag: {{ .Title }}</h1>
|
|
|
|
{{ with (.Site.GetPage .Title) }}
|
|
<ul class="posts flat">
|
|
{{ range .Pages }}
|
|
<li class="post">
|
|
<div class="post-header">
|
|
<div class="meta">
|
|
<div class="date">
|
|
<span class="day">{{ dateFormat "02" .Date }}</span>
|
|
<span class="rest">{{ if $.Site.Data.month }}{{ index $.Site.Data.month (printf "%d" .Date.Month) }} {{ .Date.Year }}{{ else }}{{ dateFormat "Jan 2006" .Date }}{{ end }}</span>
|
|
</div>
|
|
</div>
|
|
<div class="matter">
|
|
<h4 class="title small">
|
|
<a href="{{ .RelPermalink }}">{{.Title}}{{ if .Draft }}<sup class="draft-label">DRAFT</sup>{{ end }}</a>
|
|
</h4>
|
|
<span class="description">
|
|
{{ if isset .Params "description" }}
|
|
{{ .Description }}
|
|
{{ else if gt (len .RawContent) 120 }}
|
|
{{ slicestr .RawContent 0 120 }}...
|
|
{{ else }}
|
|
{{ .RawContent }}
|
|
{{ end }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
|
|
</html> |