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

github.com/mattbutton/silhouette-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony the Programmer <tony.mowers@alika.ch>2019-12-30 01:31:20 +0300
committerMatt Button <matt@mattbutton.com>2019-12-30 01:31:20 +0300
commitac9d5a36f11f86380d804da7456a4444b9f774cb (patch)
tree7561b49eeaaed3f96bcc6c7c5c5c654816c277cf
parentdd7a93f328c6273fa88a8300eacb7c550e9d49af (diff)
fix error with social icons where twitter and instagram were mixed up (#8)
-rw-r--r--layouts/partials/social-icons.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/social-icons.html b/layouts/partials/social-icons.html
index fceafb4..dbe6a2c 100644
--- a/layouts/partials/social-icons.html
+++ b/layouts/partials/social-icons.html
@@ -1,7 +1,7 @@
-{{ with .Site.Social.instagram -}}
+{{ with .Site.Social.twitter -}}
<a class="py-2 px-2" href="https://twitter.com/{{ . }}"><i class="fab fa-twitter"></i></a>
{{ end -}}
-{{ with .Site.Social.twitter -}}
+{{ with .Site.Social.instagram -}}
<a class="py-2 px-2" href="https://instagram.com/{{ . }}"><i class="fab fa-instagram"></i></a>
{{ end -}}
{{ with .Site.Social.linkedin -}}