Welcome to mirror list, hosted at ThFree Co, Russian Federation.

chapterMenu.html « partials « layouts - github.com/darshanbaral/kitab.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48a5db75bd04ce94711570334ee5eb50fa1e802b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<b class="mt-3">
  {{ $thisSection := .Site.GetPage "section" .Section }}
  {{ with $thisSection }}
  {{ .Title | markdownify }}
  {{ end }}
</b>
<ul class="list-unstyled ml-1">
  {{ $mypages := intersect (where .Site.Pages "Section" .Section) (where .Site.Pages "Kind" "page") }}
  {{ range $mypages }}
  <li class="hanging">
    <a href="{{ .Permalink }}"
      >{{ .Title | markdownify}}</a
    >
  </li>
  {{ end }}
</ul>