Шаблон для списков
This commit is contained in:
parent
20128a679e
commit
6b2e11e888
@ -1,3 +1,24 @@
|
||||
{{ 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 }}
|
Loading…
Reference in New Issue
Block a user