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

single.boot.html « post « layouts - github.com/mmrath/hugo-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e70c359fa4bba2c03c48be2cf1e6b66d9b368dc (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
<footer>
    <!--navigation-->
    {{ if .IsPage }}
      {{ if or ( .NextInSection ) ( .PrevInSection ) }}
        <nav><ul class="pagination">
        {{ if .PrevInSection }}
            <li class="page-item">
              <a href="{{ .PrevInSection.Permalink }}" title="{{ .PrevInSection.Title }} " class="page-link">
                <span aria-hidden="true">&larr;</span>{{ .Site.Data.Strings.previous }}
              </a>
            </li>
        {{end}}

        {{ if .NextInSection }}
          <li class="page-item">
            <a href="{{ .NextInSection.Permalink }}" title="{{ .NextInSection.Title }}" class="page-link">
                {{ .Site.Data.Strings.next }} <span aria-hidden="true">&rarr;</span>
            </a>
          </li>
        {{end}}
        </ul> </nav>
      {{ end }}
    {{ end }}

  <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
    {{ if ne .Site.DisqusShortname "" }}
        {{ template "_internal/disqus.html" . }}
    {{ end }}
  </div>
</footer>