summaryrefslogtreecommitdiffstats
path: root/layouts/partials/home/work.html
blob: 3cdfe8b88d3bcfb3019a2c2665a4679818bc551a (plain) (blame)
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
<article class="work">
  <h2 class="work__header section-header">Work Experience</h2>
  {{ range . }}
    <article class="work__company">
      {{ if .Link }}
        <h2 class="work__company__name">
          <a href="{{ .Link }}">{{ .Company }}</a>
        </h2>
      {{ else }}
        <h2 class="work__company__name">{{ .Company }}</h2>
      {{ end }}
      <em class="work__company__location">{{ .Location }}</em>
      {{ range .Positions }}
        <em class="work__company__position__title">{{ .Title }}</em>
        <em class="work__company__position__duration">{{ .Duration }}</em>
      {{ end }}
      {{ if .Note }}
        <p class="work__company__note">{{ .Note | safeHTML }}</p>
      {{ end }}
      <ul class="work__company__tasks">
        {{ range .Tasks }}
          <li>{{ . | safeHTML }}</li>
        {{ end }}
      </ul>
      {{ if .FootNote }}
        <p class="work__company__footnote">{{ .FootNote | safeHTML }}</p>
      {{ end }}
    </article>
  {{ end }}
</article>