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: 950c5b32049cc5cf5a24576a4f79c14916eaa3ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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>{{ . | markdownify }}</li>
        {{ end }}
      </ul>
    </div>
  {{ end }}
</section>