hugo-devresume-theme/layouts/partials/awards.html

17 lines
841 B
HTML
Raw Permalink Normal View History

2019-11-06 16:18:55 +00:00
2019-11-03 18:18:08 +00:00
<section class="education-section py-3">
2023-07-06 10:11:17 +00:00
<h3 class="text-uppercase resume-section-heading mb-4">{{ i18n "certifications" }}</h3>
2019-11-03 18:18:08 +00:00
<ul class="list-unstyled resume-awards-list">
{{ range .Site.Params.awards.list }}
<li class="mb-3">
<div class="font-weight-bold">{{ .name }}</div>
<div class="text-muted">{{ .body }}</div>
<div class="text-muted">{{ .date }}</div>
2019-11-03 18:18:08 +00:00
</li>
{{ end }}
</ul>
</section><!--//education-section-->