hugo-toha/layouts/partials/experiences.html
2020-07-14 20:30:26 +02:00

15 lines
No EOL
521 B
HTML

<div class="container-fluid anchor pb-5 experiences-section" id="{{ replace (lower .section.name) " " "-" }}">
{{ if not (.section.hideTitle) }}
<h2 class="text-center">{{ .section.name }}</h1>
{{ end }}
<div class="container timeline text-justify">
{{ range $experience:= .experiences }}
<div class="row d-flex experience">
<div class="col-12">
{{ partial "experiences/experience-info.html" $experience }}
</div>
</div>
{{ end }}
</div>
</div>