mirror of
https://github.com/fruworg/themu.git
synced 2024-11-16 07:07:16 +03:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{{ partial "creds.html" . }}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{{ partial "header.html" . }}
|
|
<body>
|
|
<div class="content">
|
|
{{ partial "head.html" . }}
|
|
|
|
<main class="list">
|
|
<div class="site-description">
|
|
{{- if isset .Site.Params "description" -}}
|
|
{{ template "partials/subtitle.html" . }}
|
|
{{- end -}}
|
|
</div>
|
|
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
|
|
{{ $paginator := .Paginate (where $pages "Params.hidden" "ne" true) }}
|
|
{{ range $paginator.Pages }}
|
|
<section class="list-item">
|
|
<h1 class="title"><a href="{{ .RelPermalink }}">{{.Title}}</a></h1>
|
|
<time datetime="{{ .Date.Format "01-02-2006 15:04:05"}}">{{ .Site.Data.Strings.publishedon}} {{.Date.Day}} {{ index $.Site.Data.months.months .Date.Month }} {{.Date.Year}}, {{ .Date.Format "15:04" }} UTC+6 {{ if .Draft }} <span class="draft-label">DRAFT</span> {{ end }}</time>
|
|
<br>{{ template "partials/pagedescription.html" . }}
|
|
</section>
|
|
{{ end }}
|
|
{{ template "partials/paginator.html" . }}
|
|
</main>
|
|
{{ partial "footer.html" . }}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|