themu/layouts/index.html

34 lines
1.2 KiB
HTML
Raw Normal View History

2023-07-30 21:48:45 +03:00
<!--
Добро пожаловать на мой веб-сайт!
Создано с помощью hugo (themu).
-->
2020-04-08 21:44:29 +03:00
<!DOCTYPE html>
<html>
2020-04-22 13:14:28 +03:00
{{ partial "header.html" . }}
<body>
<div class="content">
{{ partial "head.html" . }}
2020-04-08 21:44:29 +03:00
<main class="list">
2020-04-22 13:14:28 +03:00
<div class="site-description">
2023-07-30 22:32:04 +03:00
{{- if isset .Site.Params "description" -}}
2023-07-30 22:37:12 +03:00
{{ template "partials/subtitle.html" | markdownify }}
2020-04-22 13:14:28 +03:00
{{- end -}}
</div>
2020-04-08 21:44:29 +03:00
{{ $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>
2023-07-30 22:40:36 +03:00
<time datetime="{{ .Date.Format "01-02-2006 15:04:05"}}">{{ .Site.Data.Strings.publishedon}} {{.Date.Day}} {{ index $.Site.Data.themes.themu.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" . }}
2020-04-08 21:44:29 +03:00
</section>
{{ end }}
{{ template "partials/paginator.html" . }}
</main>
{{ partial "footer.html" . }}
</div>
2020-04-22 13:14:28 +03:00
</body>
</html>