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

schools.html « partials « layouts - github.com/tylerjlawson/simple-resume.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 390d02204dc98a8d4ee6c36232d5df3c43bfe55e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<section>
  <h2>Education</h2>
  {{ range . }}
    <div class="school">
      <div class="heading-line">
        <h3>{{ .name }} - {{ .location }}</h3>
        <h3>
          {{ .startdate }} -
          {{ if .enddate }}{{ .enddate }}{{ else }}Current{{ end }}
        </h3>
      </div>
      {{ range .degrees }}
        <p>
          <em>{{ . }}</em>
        </p>
      {{ end }}
    </div>
  {{ end }}
</section>