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

github.com/allnightgrocery/hugo-theme-blueberry-detox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew R. Jenkins <allnightgrocery@gmail.com>2017-01-29 04:05:46 +0300
committerAndrew R. Jenkins <allnightgrocery@gmail.com>2017-01-29 04:05:46 +0300
commitafb1e630023b2a6660bbb0d9c3d61c4ffc543ea1 (patch)
treec267b21b2d8c9e5845014006854a7d5e31ffec1f
parent13f8f1bc266729a32d69e647a4df0e660982e73f (diff)
Support for a few social channels in the footer.HEADmaster
-rw-r--r--layouts/partials/footer.html20
1 files changed, 16 insertions, 4 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 4a5247e..2122ee5 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,12 +1,24 @@
<footer id="site-footer">
<div class="container">
- <a href="{{ .Site.BaseURL }}index.xml" title="Get the RSS feed"><span class="tooltip"><i class="fa fa-rss"></i></span></a>
- <section>&copy; <a href="{{ .Site.BaseURL }}">{{ .Site.Params.author }}</a> 2017 | All rights reserved</section>
- <section>Theme by <a href="http://www.jrdnbwmn.com">Jordan Bowman</a>. Generated with <a href="http://gohugo.io/">Hugo</a>.</section>
+ {{ with .Site.Params.instagram }}
+ <a href="https://www.instagram.com/{{ . }}/" title="Instagram" target="_blank"><span class="tooltip"><i class="fa fa-instagram"></i></span></a>
+ {{ end }}
+ {{ with .Site.Params.twitter_name }}
+ <a href="https://www.twitter.com/{{ . }}" title="Twitter" target="_blank"><span class="tooltip"><i class="fa fa-twitter"></i></span></a>
+ {{ end }}
+ {{ with .Site.Params.facebook }}
+ <a href="https://www.facebook.com/{{ . }}" title="Facebook" target="_blank"><span class="tooltip"><i class="fa fa-facebook"></i></span></a>
+ {{ end }}
+ {{ with .Site.Params.github }}
+ <a href="https://www.github.com/{{ . }}" title="GitHub" target="_blank"><span class="tooltip"><i class="fa fa-github"></i></span></a>
+ {{ end }}
+ <a href="{{ .Site.BaseURL }}index.xml" title="Get the RSS feed"><span class="tooltip"><i class="fa fa-rss"></i></span></a>
+ <section>&copy; <a href="{{ .Site.BaseURL }}">{{ .Site.Params.author }}</a> 2017 | All rights reserved</section>
+ <section>Theme by <a href="http://www.jrdnbwmn.com">Jordan Bowman</a>. Generated with <a href="http://gohugo.io/">Hugo</a>.</section>
</div>
</footer>
<script type="text/javascript" src="{{ .Site.BaseURL }}js/fittext.js"></script>
<script type="text/javascript">
$(".heading").fitText();
- </script> \ No newline at end of file
+ </script>