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: b851493ee1e862dc30b2de839a975cd096c8d571 (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
25
26
27
28
29
30
31
32
33
34
35
{{ define "main" }}
  <main>
    {{ with .Site.Data.content }}
      <div class="box">
        <div class="wrap">
          {{ partial "header.html" . }}
          {{ with .objective }}
            <div>
              <h2>Objective</h2>
              <p>
                {{ . }}
              </p>
            </div>
          {{ end }}
          {{ with .schools }}
            {{ partial "schools.html" . }}
          {{ end }}
          {{ with .experiences }}
            {{ partial "experiences.html" . }}
          {{ end }}
          {{ range .info }}
            <section>
              <h2>{{ .name }}</h2>
              <ul>
                {{ range .points }}
                  <li>{{ . | markdownify }}</li>
                {{ end }}
              </ul>
            </section>
          {{ end }}
        </div>
      </div>
    {{ end }}
  </main>
{{ end }}