Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/awards.html')
-rw-r--r--layouts/partials/awards.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/partials/awards.html b/layouts/partials/awards.html
new file mode 100644
index 0000000..4c75ebd
--- /dev/null
+++ b/layouts/partials/awards.html
@@ -0,0 +1,14 @@
+ <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-->