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

list.html « authors « layouts - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8092c486a773b92b9bf172727069d73225f6df4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
<div class="pl-scrollbar bg-secondary-bg">
  <div class="max-w-screen-xl mx-auto">
    <div class="lg:w-3/4 mx-auto px-6 md:px-8 xl:px-12 py-12">
      {{ partial "widgets/about" . }}
    </div>
  </div>
</div>
<div class="pl-scrollbar bg-primary-bg">
  <div class="max-w-screen-xl mx-auto">
    <div class="lg:w-3/4 mx-auto px-6 md:px-8 xl:px-12 py-12">
      {{ partial "components/summary-list-plain" .Pages }}
    </div>
  </div>
</div>
{{ end }}