]> git.sur5r.net Git - i3/i3.github.io/blob - _templates/chronological.mako
d55162d562d5c109cba03d9c852ac2a39f75a856
[i3/i3.github.io] / _templates / chronological.mako
1 <%!
2         section = "blog"
3 %>
4 <%inherit file="i3.mako" />
5
6 <div id="content">
7 % for post in posts:
8   <%include file="post.mako" args="post=post" />
9   <br>
10 % endfor
11 % if prev_link:
12  <a href="${prev_link}">« Previous Page</a>
13 % endif
14 % if prev_link and next_link:
15   --  
16 % endif
17 % if next_link:
18  <a href="${next_link}">Next Page »</a>
19 % endif
20
21 </div>