Add another cover image, add some icons in places

This commit is contained in:
Raoul Snyman 2015-10-13 23:07:46 +02:00
parent 8a6e5b4576
commit 35b5455459
3 changed files with 3 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 541 KiB

View File

@ -32,7 +32,7 @@
<%def name="comment_link(link, identifier)">
%if comment_system_id:
<a href="${link}#disqus_thread" data-disqus-identifier="${identifier[:-5]}">Comments</a>
<a href="${link}#disqus_thread" data-disqus-identifier="${identifier[:-5]}"><i class="fa fa-fw fa-comments"></i></a>
%endif
</%def>

View File

@ -27,12 +27,12 @@
<ul class="pager hidden-print">
%if post.prev_post:
<li class="previous">
<a href="${post.prev_post.permalink()[:-5]}" rel="prev" title="${post.prev_post.title()|h}">${messages("Previous post")}</a>
<a href="${post.prev_post.permalink()[:-5]}" rel="prev" title="${post.prev_post.title()|h}"><i class="fa fa-fw fa-chevron-left"></i> ${messages("Previous post")}</a>
</li>
%endif
%if post.next_post:
<li class="next">
<a href="${post.next_post.permalink()[:-5]}" rel="next" title="${post.next_post.title()|h}">${messages("Next post")}</a>
<a href="${post.next_post.permalink()[:-5]}" rel="next" title="${post.next_post.title()|h}">${messages("Next post")} <i class="fa fa-fw fa-chevron-right"></i></a>
</li>
%endif
</ul>