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

experience.html « accordion « partials « layouts - github.com/darshanbaral/aafu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7bfa8afbc300e19c2d125ea650e0ba3e30320db0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ range.Site.Params.experience.list }}
<dl>
  <dt class="mb-0">
    {{ .position }}
  </dt>
  <dd class="mb-0 ml-3">
    <span class="markdownify">{{ .dates | markdownify }}</span>
    &middot;
    {{ if .url }}
    <a href="{{ .url }}">{{ .company }}</a>
    {{ else }}
    {{ .company }}
    {{ end }}
  </dd>
  <dd class="mb-0 ml-4 markdownify">{{ .details | markdownify }}</dd>
</dl>
{{ end }}