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

sidebar.html « partials « layouts - github.com/darshanbaral/kitab.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5f30a9ee49fb1113bf94769c406381a54ebeddd (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
<div class="toTop" style="width: 25px;">
  {{ if eq .Kind "page" }}
  {{ partial "chapterMenu" . }}
  {{ partial "prevnext" . }}
  {{ end }}
  <p class="mb-1 mt-1 text-left">
    <i
      class="navMenu menuItem fas fa-chevron-circle-up"
      title="Scroll to top"
      onclick="scrollToTop()"
    ></i>
  </p>
  <p class="mb-1 mt-1 text-left">
    <i
      title="Copy URL to share"
      class="navMenu menuItem fas fa-share-alt"
      onclick="copyUrl({{ .Permalink }})"
    ></i>
  </p>
  <p class="about text-left mb-0">
    <a href="https://github.com/darshanbaral/kitab">
      <small class="text-secondary">kitab</small>
      <br />
    </a>
    <a href="https://www.darshanbaral.com/">
      <small class="text-secondary">d.b</small>
    </a>
  </p>
</div>