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

experience.html « partials « layouts - github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8138be980761ac16bd26e3040df21d7c6c01db5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<h3>
  <i class="fas fa-briefcase"></i>
  {{ .Site.Params.experiences.title }}
</h3>

{{ range.Site.Params.jobs.list }}
<dl>
  <dt>{{ .position }}</dt>
  <dd class="mb-0 ml-3">{{ .dates | markdownify }}</dd>
  <dd class="mb-0 ml-3">
    {{ if .link }}<a class="text-warning" href="{{ .link }}">{{ .company }}</a
    >{{ else }} {{ .company }} {{ end }}
  </dd>
  <dd class="mb-0 ml-3">{{ .details | markdownify }}</dd>
</dl>
{{ end }}