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/education.html')
-rw-r--r--layouts/partials/education.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layouts/partials/education.html b/layouts/partials/education.html
new file mode 100644
index 0000000..5cc0785
--- /dev/null
+++ b/layouts/partials/education.html
@@ -0,0 +1,15 @@
+ <section class="education-section py-3">
+
+ <h3 class="text-uppercase resume-section-heading mb-4">{{ i18n "education" }}</h3>
+
+ <ul class="list-unstyled resume-education-list">
+ {{ range .Site.Params.education.list }}
+ <li class="mb-3">
+ <div class="resume-degree font-weight-bold">{{ .degree }}</div>
+ <div class="resume-degree-org text-muted">{{ .university }}</div>
+ <div class="resume-degree-time text-muted">{{ .date }}</div>
+ </li>
+ {{ end }}
+ </ul>
+
+ </section><!--//education-section-->