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

header.html « partials « layouts - github.com/darshanbaral/kitab.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2290bd74a2360569e3919d0c15f33c5625ff108b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<nav>
  <div class="d-flex flex-row mt-2 border-bottom">
    <div class="navMenu mr-2">
      <a href="{{ `/` | relURL }}"><i title="Home" class="fas fa-home"></i></a>
    </div>

    <div class="dropdown">
      <p class="navMenu ml-2 mr-2 dropbtn">
        <i class="fas fa-book"></i>
      </p>
      <div class="dropdown-content p-2 bg-light shadow">
        {{ partial "bookMenu" . }}
      </div>
    </div>

    <div class="w-100 text-right">
      {{ partial "footer" . }}
    </div>
  </div>
</nav>