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

index.html « layouts - github.com/apvarun/showcase-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79632745b0ebdc0810082143c7fa583ef0458548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ 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" .Site.Pages }}

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

  </div>
</section>

{{ end }}