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