mmote.ru/themes/mmotium/layouts/_default/list.html

25 lines
816 B
HTML
Raw Normal View History

2024-06-05 09:18:03 +03:00
{{ define "head_meta" }}
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}Список ({{.Title}}){{ end }}">
<meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}Список ({{.Title}}){{ end }}">
{{end}}
2023-01-01 18:21:01 +03:00
{{ define "main" }}
2024-06-05 09:18:03 +03:00
<div class="page-wrapper">
<div class="content-column">
<div class="single post">
<header>
<h1>{{ .Title }}</h1>
<p class="subhead">{{ .Params.description }}</p>
</header>
<ul>
{{ range .Pages.ByTitle }}
<li hugo-nav="{{ .RelPermalink}}"><a href="{{ .Permalink}}">{{ .LinkTitle }}</a></li>
{{ end }}
</ul>
</div>
</div>
{{ partial "sidebar.html" . }}
</div>
{{ end }}