RSS reader has been added to the top nav

This commit is contained in:
Sameer Rahmani 2019-03-29 20:12:41 +00:00
parent 8b8556531d
commit 8bc51c4208
1 changed files with 15 additions and 4 deletions

View File

@ -36,15 +36,15 @@
<div id="navcontainer" class="navbar-menu">
<div class="navbar-start">
<a href="/" class="navbar-item">
Blog
<a href="/" class="navbar-item {% if page.url == '/' %}is-active{% endif %}">
Home
</a>
<a href="/code-of-honor/" class="navbar-item">
<a href="/code-of-honor/" class="navbar-item {% if page.url == '/code-of-honor/' %}is-active{% endif %}">
Code of Honor
</a>
<a href="/about/" class="navbar-item">
<a href="/about/" class="navbar-item {% if page.url == '/about/' %}is-active{% endif %}">
About Me
</a>
</div>
@ -80,6 +80,17 @@
Twitter
</span>
</a>
<a class="navbar-item" href="/feed.xml">
<span class="icon is-large is-hidden-mobile">
<i class="fas fa-rss fa-lg"></i>
</span>
<span class="is-large is-hidden-desktop">
<i class="pad fas fa-rss fa-lg"></i>
RSS Feed
</span>
</a>
</div>
</div>
</div>