{{/* SPDX-FileCopyrightText: 2022 Ngô Ngọc Đức Huy SPDX-License-Identifier: MIT */}} {{ define "main" }}
{{ .Content }}
{{ if in .Params.categories "book" }} {{ $chapters := .Page.Pages }} {{ range .Page.Translations }} {{ $chapters = $chapters | lang.Merge .Pages }} {{ end}}
    {{ range sort $chapters "Weight" }}
  1. {{ trim .Title " " }} {{ partial "post-info.html" . }}
  2. {{ end }}
{{ else if in .Params.categories "blog" }}
    {{ range sort .Pages "Date" "desc" }}
  1. : {{ trim .Title " " }} {{ partial "post-language-switcher.html" . }} {{ partial "post-info.html" . }}
  2. {{ end }}
{{ else }}
{{ end }} {{ end }}