hugo-orbit-theme/layouts/partials/volunteering.html

20 lines
936 B
HTML

<section class="section experiences-section">
<h2 class="section-title"><span class="icon-holder"><i class="fa {{ .Site.Params.volunteering.icon }}"></i></span>{{ i18n "volunteering" }}</h2>
{{ range .Site.Params.volunteering.list }}
<div class="item">
<div class="meta">
<div class="upper-row">
<h3 class="job-title">{{ .position }}</h3>
<div class="time">{{ .dates }}</div>
</div><!--//upper-row-->
<div class="company">{{ .company }}</div>
</div><!--//meta-->
<div class="details">
<p>{{ with .details }}{{ . | markdownify }}{{ end }}</p>
</div><!--//details-->
</div><!--//item-->
{{ end }}
</section><!--//section-->