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

github.com/jpescador/hugo-future-imperfect.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Collins <thepatrickcollins@gmail.com>2018-02-10 05:21:47 +0300
committerGitHub <noreply@github.com>2018-02-10 05:21:47 +0300
commit300f40e274728ac2b73e25623ce0c22455a9cb8d (patch)
treeeed4648e164633771b97d189a65532068ac98d0c
parent1a8075a20772f092b908ea4bfc3769ff8865f5c8 (diff)
Patch RSS icon to list
-rw-r--r--layouts/partials/rss-icon.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/rss-icon.html b/layouts/partials/rss-icon.html
index ab4805f..a48d5fd 100644
--- a/layouts/partials/rss-icon.html
+++ b/layouts/partials/rss-icon.html
@@ -1,5 +1,5 @@
{{ if .RSSLink }}
- <a href="{{ .RSSLink }}" type="application/rss+xml" target="_blank" title="RSS" class="fa fa-rss"></a>
+ <li><a href="{{ .RSSLink }}" type="application/rss+xml" target="_blank" title="RSS" class="fa fa-rss"></a></li>
{{ else }}
- <a href="{{ .Site.RSSLink }}" type="application/rss+xml" target="_blank" title="RSS" class="fa fa-rss"></a>
+ <li><a href="{{ .Site.RSSLink }}" type="application/rss+xml" target="_blank" title="RSS" class="fa fa-rss"></a></li>
{{ end }}