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/sidebar.html')
-rw-r--r--layouts/partials/sidebar.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
new file mode 100644
index 0000000..31901a7
--- /dev/null
+++ b/layouts/partials/sidebar.html
@@ -0,0 +1,24 @@
+ <aside class="resume-aside col-12 col-lg-4 col-xl-3 px-lg-4 pb-lg-4">
+
+
+ {{ if .Site.Params.skills.enable }}
+ {{ partial "skills.html" . }}
+ {{ end }}
+
+ {{ if .Site.Params.education.enable }}
+ {{ partial "education.html" . }}
+ {{ end }}
+
+ {{ if .Site.Params.awards.enable }}
+ {{ partial "awards.html" . }}
+ {{ end }}
+
+ {{ if .Site.Params.languages.enable }}
+ {{ partial "languages.html" . }}
+ {{ end }}
+
+ {{ if .Site.Params.interests.enable }}
+ {{ partial "interests.html" . }}
+ {{ end }}
+
+ </aside><!--//resume-aside-->