31 lines
724 B
HTML
31 lines
724 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{ partial "header.html" . }}
|
|
|
|
<body>
|
|
<div class="container wrapper list">
|
|
{{ partial "head.html" . }}
|
|
|
|
{{ if isset .Data "Term" }}
|
|
<h1>Entries tagged - "{{ .Data.Term }}"</h1>
|
|
{{ else }}
|
|
<h1 class="page-title">All articles</h1>
|
|
{{ end }}
|
|
|
|
<ul class="posts">
|
|
{{- range .Data.Pages -}}
|
|
{{- if (in (.Site.Params.excludedTypes | default (slice "page")) .Type) -}}
|
|
{{- else -}}
|
|
<li class="post">
|
|
<a href="{{ .RelPermalink }}">{{.Title}}</a> <span class="meta">{{ dateFormat "Jan 2, 2006" .Date }}{{ if .Draft }} <span class="draft-label">DRAFT</span> {{ end }}</span>
|
|
</li>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</ul>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
|
|
</html>
|