blob: 6dbd464a244d9f2035e6871a472ff0ab6fb059e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{/*
SPDX-FileCopyrightText: 2022 Ngô Ngọc Đức Huy <huyngo@disroot.org>
SPDX-License-Identifier: MIT
*/}}
{{ define "main" }}
<section class="index-content" id="main">
{{ .Content }}
</section>
{{ if or .Site.Params.OnlyBooks (in .Params.categories "book") }}
{{ partial "post-navigation-top.html" . }}
<section class="toc">
{{ partial "toc.html" . }}
</section>
{{ else if in .Params.categories "blog" }}
{{ partial "feed.html" . }}
{{ else }}
{{ partial "generic-list.html" . }}
{{ end }}
{{ end }}
|