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

25 lines
816 B
HTML

{{ define "head_meta" }}
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}Список ({{.Title}}){{ end }}">
<meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}Список ({{.Title}}){{ end }}">
{{end}}
{{ define "main" }}
<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 }}