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: 8d13d877038ddb53d44b14cd8e5fd57d545f24f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="menuItems d-none">
  <ul class="list-unstyled">
    {{ range .Site.Sections }}
    <li>
      <a href="{{ .Permalink }}">
        <h2 class="mb-0 mt-3">
          {{ .Title |markdownify }}
        </h2>
      </a>
      <p>by {{ .Params.author }}</p>
    </li>
    {{ end }}
  </ul>
</div>