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

bookMenu.html « partials « layouts - github.com/darshanbaral/kitab.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c30cab05bbf67bc03c4b337fb2113c85748fbf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<b>
  Books
</b>
<ul class="list-unstyled ml-1">
  {{ range .Site.Sections }}
  <li class="hanging">
    <a href="{{ .Permalink }}">
      {{ .Title |markdownify }}
    </a>
    by {{ .Params.author }}
  </li>
  {{ end }}
</ul>