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

experiences.html « partials « layouts - github.com/tylerjlawson/simple-resume.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76acd710e8fa18985a8bbce22cc2d278c3a7e2c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<section>
  <h2>Experience</h2>
  {{ range . }}
  <div>
    <div class="heading-line">
      <h3>{{ .position }} at {{ .company }} - {{ .location }}</h3>
      <h3>{{ .startdate }} - {{ if .enddate }}{{ .enddate }}{{ else }}Current{{ end }}</h3>
    </div>
    <ul>
      {{ range .points }}
      <li>{{ . }}</li>
      {{ end }}
    </ul>
  </div>
  {{ end }}
</section>