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: 12db4e9e633fa56ed65681a14e7dc1fc72d23ca7 (plain)
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
<div class="position-relative">
  <i
    class="nav-menu hover-menu ml-2 mr-2 mt-1 fas fa-book"
    onclick="expandMenu(this)"
    title="Show all books"
  ></i>
  <div
    class="show bg-light shadow mt-2"
    style="position: absolute;
      min-width: 280px;
      max-width: 75%;
      z-index: 1;
      max-height: 0px;
      overflow: hidden;"
  >
    <div class="p-2">
      <strong>
        Books
      </strong>
      <ul class="list-unstyled ml-1">
        {{ range .Site.Sections }}
        <li class="hanging">
          <a href="{{ .Permalink }}">
            {{ .Title | markdownify }}
          </a>
          by {{ .Params.author }}
        </li>
        {{ end }}
      </ul>
    </div>
  </div>
</div>