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: bc50fc4af92b4f8087a171b8b7cd89608184779e (plain)
1
2
3
4
5
6
7
8
9
10
<h3><i class="fas {{ .Site.Params.experiences.icon }}"></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 }}