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

github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/social.html')
-rw-r--r--layouts/partials/social.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
new file mode 100644
index 0000000..3eeda67
--- /dev/null
+++ b/layouts/partials/social.html
@@ -0,0 +1,7 @@
+<div style="display: flex; justify-content: center; align-items: center; margin-top: 1em;">
+ {{ range $key, $val := .Site.Params.social }}
+ <div style="width: 40px; height: 40px; margin: 0 0.5em;">
+ <a href="{{ $val }}">{{ partial (print "icons/" $key ".html") . }}</a>
+ </div>
+ {{ end }}
+</div>