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

single.html « _default « layouts - github.com/darshanbaral/kitab.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16f22136528d8ae8c7e0bce6b0d310250404ca41 (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
{{ define "main" }}
<div class="mb-2">
  <h2>{{ .Title }}</h2>
  <div class="rounded p-2 shadow" style="margin-left: 32px;">
    {{ .Content }}
  </div>

  <div class="toTop" style="width: 25px;">
    {{ partial "previousChapter" . }}
    {{ partial "nextChapter" . }}
    <p class="navMenu menuItem mb-1 mt-1 text-left">
      <i
        class="fas fa-chevron-circle-up"
        title="Scroll to top"
        onclick="scrollToTop()"
      ></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>
</div>
{{ end }}