blob: f8112c584385724eb54627f9dfc3f017f6b3778c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{{ define "main" }}
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4 sidebar">
<h1 class="post-title fw-semibold">←<a href="{{.Page.FirstSection.RelPermalink}}">{{.Page.FirstSection.Title}}</a></h1>
{{ if len .Page.TableOfContents }}
<h2 class="fw-semibold">Содержание</h2>
{{ .Page.TableOfContents }} {{ end }} {{if .Page.FirstSection.Pages}}
<h2 class="fw-semibold">Остальное</h2>
<ul>
{{ range .Page.CurrentSection.Pages }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}
</div>
<div class="col-xs-12 col-sm-12 col-md-8 content">
<div class="post">
{{ partial "single/header.html" . }}
<div class="e-content">{{ .Content }}</div>
{{ partial "single/footer.html" . }}
</div>
</div>
</div>
</div>
{{ end }}
|