about summary refs log tree commit diff
path: root/layouts/_default/list.html
blob: ecac06cadacd96908a38cb258102baddbdfb5bee (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
29
30
31
32
33
34
35
36
{{/*
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">
    <ol>
      {{ range sort .Pages "Weight" }}
        <li>
          <a href="{{ .RelPermalink }}">{{ trim .Title " " }}</a>
          {{ partial "post-language-switcher.html" . }}
          {{ partial "post-info.html" . }}
        </li>
      {{ end }}
      <ol>
  </section>
  {{ else }}
  <section class="feed">
    <ol>
      {{ range sort .Pages "Date" }}
        <li>
          <a href="{{ .RelPermalink }}">{{ trim .Title " " }}</a>
          {{ partial "post-language-switcher.html" . }}
          {{ partial "post-info.html" . }}
        </li>
      {{ end }}
      <ol>
  </section>
  {{ end }}
{{ end }}