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

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

  <div class="reveal">
    <div class="slides">
      {{ partial "slide.html" . }}

      {{ range sort .Site.Sections "Weight" "desc" }}
        <section>
          {{ partial "slide.html" . }}

          {{ range sort .Pages "Weight" "desc" }}
            {{ partial "slide.html" . }}
          {{ end }}
        </section>
      {{ end }}
    </div>
  </div>
{{ end }}