diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2021-01-16 21:37:42 -0700 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2021-01-16 21:38:06 -0700 |
commit | d57fd70640948cf20eeb41b56e8d4e23e616cec0 (patch) | |
tree | e5a2c0e437995b0dbb0549666f348ed9dfe21149 /_includes | |
parent | 59a39f0ca87d80f3fbe11a19c6103f83fda5c5f9 (diff) |
Add RSS button, remove email section of follow page
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/header.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/_includes/header.html b/_includes/header.html index 69fb0aa..888a8dc 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -22,7 +22,14 @@ {%- if!page.nofollow != true %} <div class="five columns light" style="text-align: right"> <span style="display:block; margin-bottom:0.5rem;">Get notified when new posts are published!</span> - <a href="{{ "/follow.html" | relative_url }}"><button class="button-primary">Follow the blog</button></a> + <a href="{{ "/follow.html" | relative_url }}"><button class="button-primary"> + <i class="fab fa-twitter"></i> + Follow + </button></a> + <a href="{{ "/feed.xml" | relative_url }}"><button class="button"> + <i class="fas fa-rss"></i> + RSS + </button></a> </div> {% endif -%} </div> |