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>2015-04-26 16:37:29 +0300
committerAndrew R. Jenkins <allnightgrocery@gmail.com>2015-04-26 16:37:29 +0300
commitb34922517f9e60f5690e1603192f8bc4cefed0fa (patch)
treeda56f3bc210c2407955dd4e346fe53211552945a
parent6d9dc6956bc6fd7f126343f706b73ed45c53d428 (diff)
Fixed the RSS link, which wasn't working on single pages.
-rw-r--r--layouts/partials/footer.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 03fb7f7..87f7d7b 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,6 +1,6 @@
<footer id="site-footer">
<div class="container">
- <a href="{{ .RSSLink }}" title="Get the RSS feed"><span class="tooltip"><i class="fa fa-rss"></i></span></a>
+ <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> 2015 | 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>