summaryrefslogtreecommitdiff
path: root/_includes/header.html
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2018-09-03 23:24:53 -0400
committerBrian Picciano <mediocregopher@gmail.com>2018-09-03 23:31:12 -0400
commitc0f853abfb12fa3de76edadd60570930c7732cc1 (patch)
tree372cc2da30b8eafaa4632ada540de2bb7d454ac7 /_includes/header.html
parentbfefb5fa2e831e32672c2feaa844bbc1a7d41bc3 (diff)
add rss and social media icons to header
Diffstat (limited to '_includes/header.html')
-rw-r--r--_includes/header.html21
1 files changed, 16 insertions, 5 deletions
diff --git a/_includes/header.html b/_includes/header.html
index 2d9f4c8..4ce71f8 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -1,14 +1,25 @@
<header id="title-header" role="banner">
<div class="row">
- <div class="six columns">
+ <div class="eight columns">
<h5 class="title">
<a href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
</h5>
</div>
- <!--
- <div class="six columns">
- subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a>
+
+ <div class="four columns">
+ <div class="social">
+ <a>RSS/Social:</a>
+ <a href="{{ 'feed.xml' | relative_url }}">
+ <i class="fas fa-rss"></i>
+ </a>
+ <a href="https://github.com/{{ site.github_username }}">
+ <i class="fab fa-github"></i>
+ </a>
+ <a href="https://twitter.com/{{ site.twitter_username }}">
+ <i class="fab fa-twitter"></i>
+ </a>
+ </div>
</div>
- -->
+
</div>
</header>