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

15 lines
750 B
HTML
Raw Normal View History

2019-11-03 18:18:08 +00:00
<section class="education-section py-3">
<h3 class="text-uppercase resume-section-heading mb-4">{{ i18n "awards" }}</h3>
<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>
</li>
{{ end }}
</ul>
</section><!--//education-section-->