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

github.com/runningstream/hugograyscale.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunning Stream <43305913+runningstream@users.noreply.github.com>2019-08-19 19:30:34 +0300
committerGitHub <noreply@github.com>2019-08-19 19:30:34 +0300
commit704cffe3670161c91ea0d246fbc038b92eae8f1f (patch)
treef3e6d19dfd9099011b50f51a21ba04974f75dd88
parent47c1ae7ef552dc9a20f1e421da0dc7884ac1ffdd (diff)
parent56909d0ce1ade198c68d3034d6e237c81919f4cb (diff)
Merge pull request #1 from jdcaperon/add-social-handles
Add Facebook and Instagram to socials.
-rw-r--r--layouts/index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 80f9aaf..beb0938 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -122,6 +122,22 @@
</a>
</li>
{{- end -}}
+ {{- if isset $.Params.socialhandles "facebook" -}}
+ <li class="list-inline-item">
+ <a href="https://facebook.com/{{ $.Params.socialhandles.facebook}}" class="btn btn-default btn-lg">
+ <i class="fa fa-facebook-square fa-fw"></i>
+ <span class="network-name">Facebook</span>
+ </a>
+ </li>
+ {{- end -}}
+ {{- if isset $.Params.socialhandles "instagram" -}}
+ <li class="list-inline-item">
+ <a href="https://instagram.com/{{ $.Params.socialhandles.instagram }}" class="btn btn-default btn-lg">
+ <i class="fa fa-instagram fa-fw"></i>
+ <span class="network-name">Instagram</span>
+ </a>
+ </li>
+ {{- end -}}
</ul>
{{- end -}}
</div>