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/skills.html')
-rw-r--r--layouts/partials/skills.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layouts/partials/skills.html b/layouts/partials/skills.html
new file mode 100644
index 0000000..a500af9
--- /dev/null
+++ b/layouts/partials/skills.html
@@ -0,0 +1,16 @@
+ <section class="skills-section py-3">
+
+ <h3 class="text-uppercase resume-section-heading mb-4">{{ i18n "skills" }}</h3>
+
+ {{ range .Site.Params.skills.list }}
+ <div class="item">
+ <h4 class="item-title">{{ .title }}</h4>
+ <ul class="list-unstyled resume-skills-list">
+ {{ range .items }}
+ <li class="mb-2">{{ with .details }}{{ . | markdownify }}{{ end }}</li>
+ {{ end }}
+ </ul>
+ </div><!--//item-->
+ {{ end }}
+
+ </section><!--//skills-section-->