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

index.html « layouts - github.com/tylerjlawson/simple-resume.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 728cb683d4846e3ff9dc81611ad9eb91dfbbf01b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
  <main>
    {{ with .Site.Data.content }}
      <div class="box">
        <div class="wrap">
          {{ partial "header.html" . }}
          {{ range .sections }} {{ partial "section.html" . }} {{ end }}
        </div>
      </div>
    {{ end }}
  </main>
{{ end }}