Skip to content

Commit

Permalink
unbreak
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Mar 11, 2013
1 parent 5b36284 commit dd86fad
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions nikola/data/themes/default/templates/index_helper.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## -*- coding: utf-8 -*-
<%def name="html_pager()">
<div>
<ul class="pager">
%if prevlink:
<li class="previous">
<a href="${prevlink}">&larr; ${messages[lang]["Newer posts"]}</a>
%endif
%if nextlink:
<li class="next">
<a href="${nextlink}">${messages[lang]["Older posts"]} &rarr;</a>
%endif
</ul>
</div>
</%def>

<%def name="mathjax_script(post)">
%if any(post.is_mathjax for post in posts):
<script src="/assets/js/mathjax.js" type="text/javascript"></script>
%endif
</%def>

0 comments on commit dd86fad

Please sign in to comment.