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

github.com/uicardiodev/hugo-uilite.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.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layouts/partials/skills.html b/layouts/partials/skills.html
new file mode 100644
index 0000000..69bc4b9
--- /dev/null
+++ b/layouts/partials/skills.html
@@ -0,0 +1,15 @@
+{{ $skills := .Site.Data.skills }}
+
+<section id="skills" class="aqua text-light">
+ <h2 class="heading">{{ $skills.title }}</h2>
+
+ {{ range $key, $value := $skills.skills }}
+
+ <div class="skill">
+ <span class="h6">{{ $key }}</span>
+ <div class="progress">
+ <div class="progress-bar bg-blue" role="progressbar" style="width: {{ $value }}%" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
+ </div>
+ </div>
+ {{ end }}
+</section> \ No newline at end of file