Skip to content

Commit

Permalink
updated more of the category links
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithan committed Dec 27, 2012
1 parent 9d7f1a6 commit dc0d437
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pelicanconf.py
Expand Up @@ -16,6 +16,7 @@
# Social widget
SOCIAL = ((' wraithan', 'https://github.com/wraithan'),
(' Wraithan', 'https://facebook.com/Wraithan'),
(' @Wraithan', 'http://twitter.com/wraithan'),)
(' @Wraithan', 'http://twitter.com/wraithan'),
(' Wraithan', 'http://twitch.tv/wraithan'),)

DEFAULT_PAGINATION = 10
1 change: 1 addition & 0 deletions themes/bootstrap/static/local.css
Expand Up @@ -26,4 +26,5 @@ footer {
.social a[href*='last.fm']:before, .social a[href*='lastfm.']:before {content: url('./images/icons/lastfm.png');}
.social a[href*='rss.xml']:before {content: url('./images/icons/rss.png');}
.social a[href*='stackoverflow.com']:before {content: url('./images/icons/stackoverflow.png');}
.social a[href*='twitch.tv']:before {content: url('./images/icons/twitch.png');}
.social a[href*='twitter.com']:before {content: url('./images/icons/twitter.png');}
2 changes: 1 addition & 1 deletion themes/bootstrap/templates/base.html
Expand Up @@ -36,7 +36,7 @@
{% endfor %}
{% endif %}
{% for cat, null in categories %}
<li {% if cat == category %}class="active"{% endif %}><a href="http://{{ cat }}.wraithan.net/">{{ cat }}</a></li>
<li {% if cat == category %}class="active"{% endif %}><a href="http://{{ cat.name.lower() }}.wraithan.net/">{{ cat }}</a></li>
{% endfor %}
</ul>
<ul class="nav pull-right">
Expand Down
2 changes: 1 addition & 1 deletion themes/bootstrap/templates/metadata.html
@@ -1,3 +1,3 @@
Written on <a class="more" href="{{ SITEURL }}/{{ article.url }}">{{ article.date.date() }}</a>
in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
in <a href="http://{{ article.category.name.lower() }}.wraithan.net">{{ article.category }}</a>
{% if article.tags %}tags: {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> {% endfor %}{% endif %}

0 comments on commit dc0d437

Please sign in to comment.