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

index.html « layouts - gitlab.com/rmaguiar/hugo-theme-color-your-world.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c4c3a6c152a1eac5c309d83825a05f8c6bdb81b9 (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
{{ define "main" }}

  {{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}

  <main class="index">

    {{ if .Content }}
      <article>
        <h1>{{ .Title | emojify }}</h1>
        
        {{ partial "processed-content" . }}
      </article>
    {{ else }}
    
      <h1>{{ T "posts" }}</h1>
      
      {{ partial "post-list" . }}
      {{ partial "pagination" . }}
      
    {{ end }}

  </main>

{{ end }}