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

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Splitt <mr.avgp@googlemail.com>2022-07-05 14:46:40 +0300
committerGitHub <noreply@github.com>2022-07-05 14:46:40 +0300
commit68ae56cd8c3872a1e114d494c7b078994b90f803 (patch)
treee450de685a1cd6918f6bee3f9c49f79b41938f87
parent6866fe66a0bae332cbae26acc04783f480e28c27 (diff)
Fixes Instagram icon (#385)
Co-authored-by: Martin Splitt <martin@geekonaut.de>
-rw-r--r--layouts/guest/list.html2
-rw-r--r--layouts/guest/single.html2
-rw-r--r--layouts/host/single.html2
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/partials/hosts.html2
5 files changed, 5 insertions, 5 deletions
diff --git a/layouts/guest/list.html b/layouts/guest/list.html
index 33aa9d1..5e68a9e 100644
--- a/layouts/guest/list.html
+++ b/layouts/guest/list.html
@@ -61,7 +61,7 @@
{{ partial "social-link.html" (dict "context" . "aclass" "" "iclass" "fab fa-pinterest-square fa-2x" "prefix" "https://www.pinterest.com/" "text" "") }}
{{ end }}
{{ with .Params.Instagram }}
- {{ partial "social-link.html" (dict "context" . "aclass" "" "iclass" "fab fa-instagram-square fa-2x" "prefix" "https://www.instagram.com/" "text" "") }}
+ {{ partial "social-link.html" (dict "context" . "aclass" "" "iclass" "fab fa-instagram fa-2x" "prefix" "https://www.instagram.com/" "text" "") }}
{{ end }}
{{ with .Params.YouTube }}
{{ partial "social-link.html" (dict "context" . "aclass" "" "iclass" "fab fa-youtube-square fa-2x" "prefix" "https://www.youtube.com/" "text" "") }}
diff --git a/layouts/guest/single.html b/layouts/guest/single.html
index 755ac17..d531d3f 100644
--- a/layouts/guest/single.html
+++ b/layouts/guest/single.html
@@ -50,7 +50,7 @@
{{ partial "social-link.html" (dict "context" .Params.Pinterest "aclass" "" "iclass" "fab fa-pinterest-square fa-2x" "prefix" "https://www.pinterest.com/" "text" "") }}
{{ end }}
{{ if .Params.Instagram }}
- {{ partial "social-link.html" (dict "context" .Params.Instagram "aclass" "" "iclass" "fab fa-instagram-square fa-2x" "prefix" "https://www.instagram.com/" "text" "") }}
+ {{ partial "social-link.html" (dict "context" .Params.Instagram "aclass" "" "iclass" "fab fa-instagram fa-2x" "prefix" "https://www.instagram.com/" "text" "") }}
{{ end }}
{{ if .Params.YouTube }}
{{ partial "social-link.html" (dict "context" .Params.YouTube "aclass" "" "iclass" "fab fa-youtube-square fa-2x" "prefix" "https://www.youtube.com/" "text" "") }}
diff --git a/layouts/host/single.html b/layouts/host/single.html
index ee8992c..9b20a4b 100644
--- a/layouts/host/single.html
+++ b/layouts/host/single.html
@@ -49,7 +49,7 @@
{{ partial "social-link.html" (dict "context" .Params.Pinterest "iclass" "fab fa-pinterest-square fa-2x" "prefix" "https://www.pinterest.com/" "text" "") }}
{{ end }}
{{ if .Params.Instagram }}
- {{ partial "social-link.html" (dict "context" .Params.Instagram "iclass" "fab fa-instagram-square fa-2x" "prefix" "https://www.instagram.com/" "text" "") }}
+ {{ partial "social-link.html" (dict "context" .Params.Instagram "iclass" "fab fa-instagram fa-2x" "prefix" "https://www.instagram.com/" "text" "") }}
{{ end }}
{{ if .Params.YouTube }}
{{ partial "social-link.html" (dict "context" .Params.YouTube "iclass" "fab fa-youtube-square fa-2x" "prefix" "https://www.youtube.com/" "text" "") }}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 7986cd6..a83c6d3 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -54,7 +54,7 @@
{{ end }}
{{ if (isset .Site.Params.social "instagram" ) }}
<li>
- {{ partial "social-link.html" (dict "context" $.Site.Params.social.instagram "aclass" "social-links" "iclass" "fab fa-instagram-square fa-2x" "prefix" "https://www.instagram.com/" "text" "") }}
+ {{ partial "social-link.html" (dict "context" $.Site.Params.social.instagram "aclass" "social-links" "iclass" "fab fa-instagram fa-2x" "prefix" "https://www.instagram.com/" "text" "") }}
</li>
{{ end }}
{{ if (isset .Site.Params.social "linkedin" ) }}
diff --git a/layouts/partials/hosts.html b/layouts/partials/hosts.html
index bd607e3..1c6cda2 100644
--- a/layouts/partials/hosts.html
+++ b/layouts/partials/hosts.html
@@ -42,7 +42,7 @@
{{ partial "social-link.html" (dict "context" . "aclass" "" "iclass" "fab fa-pinterest-square fa-2x" "prefix" "https://www.pinterest.com/") }}
{{ end }}
{{ with .Params.Instagram }}
- {{ partial "social-link.html" (dict "context" . "aclass" "" "iclass" "fab fa-instagram-square fa-2x" "prefix" "https://www.instagram.com/") }}
+ {{ partial "social-link.html" (dict "context" . "aclass" "" "iclass" "fab fa-instagram fa-2x" "prefix" "https://www.instagram.com/") }}
{{ end }}
{{ with .Params.YouTube }}
{{ partial "social-link.html" (dict "context" . "aclass" "" "iclass" "fab fa-youtube-square fa-2x" "prefix" "https://www.youtube.com/") }}