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: 3daf5acf956b0210bb1f92b0d780d570abe57de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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>