Clean up the main site nav

This commit is contained in:
R Tyler Croy 2021-03-20 15:55:46 -07:00
parent 96220174af
commit 7ec514b4b0
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
3 changed files with 14 additions and 7 deletions

View File

@ -1,6 +1,7 @@
pages: pages:
- {name: 'About', url: 'about.html'} - {name: 'About', url: '/about.html'}
- {name: 'Tags', url: 'categories'} - {name: 'Tags', url: '/categories'}
- {name: 'Feed', url: 'atom.xml'} - {name: 'Gopher Site', url: 'gopher://gopher.brokenco.de/'}
- {name: 'Microblog', url: 'microblog.xml'} - {name: 'Posts', url: '/atom.xml'}
- {name: 'Gopher', url: 'gopher://gopher.brokenco.de/'} - {name: 'Microblog', url: '/microblog.xml'}
- {name: 'Podcast Picks', url: '/podcast-picks.xml'}

View File

@ -1,3 +1,10 @@
{% for item in site.data.pages.pages %} {% for item in site.data.pages.pages %}
<a href="{{ item.url | relative_url}}">{{ item.name }}</a> <a href="{{ item.url | relative_url}}">{{ item.name }}</a>
{% endfor %} {% if item.url contains ".xml" %}
<img src="/images/rss.png"
alt="RSS"
height="14px"
style="margin-bottom: 0; display: inline;"/>
{% endif %}
&nbsp;&nbsp;
{% endfor %}

View File

@ -44,7 +44,6 @@ header{
color: black; color: black;
} }
a{ a{
text-decoration: none;
color: $base; color: $base;
font-family: 'PT Serif', serif; font-family: 'PT Serif', serif;
margin-right: 3px; margin-right: 3px;