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

section.html « _default « layouts - github.com/apvarun/showcase-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45253a7af5ec90a09f2dd5a7d5f744c191a76d0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}

<section class="text-gray-700 body-font">
  <div class="container px-5 py-8 mx-auto">
    {{- partial "custom-message.html" . -}}

        
    {{ .Scratch.Set "pages" .Paginator.Pages }}

    {{ if eq .Site.Params.multipage true }}
    {{- partial "pagination.html" . -}}
    {{ else }}
    {{- partial "no-pagination.html" . -}}
    {{ end }}

  </div>
</section>

{{ end }}