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

footer.html « partials « layouts - github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 544ca02aacdd819c1074b0fddf01df551cfc6bfc (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
<footer style="display: flex; flex-direction: column; margin-top: 0.5em;">
  {{ if eq .Kind "page" }}
  {{ partial "prevnext.html" . }}
  {{ end }} {{ if eq .Kind "section" }}
  <div>
    {{ template "_internal/pagination.html" . }}
  </div>
  {{ end }}
  <div
    style="
      padding: 10px 5px;
      font-size: 0.8em;
      background-color: var(--bgDarker);
      box-shadow: 0px 0px 2px 2px black;
      text-align: center;
    "
  >
    <p style="margin: 0 0 5px 0;">{{ .Site.Params.footer }}</p>
    <p style="margin: 0;">
      <a href="https://github.com/darshanbaral/ghazal">ghazal</a> by
      <a href="https://www.darshanbaral.com/">darshan</a>.
    </p>
  </div>
</footer>