1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
% include('header.tpl', page=page) <h2>History</h2> <ul> % for h in history: <li><a href="/history/{{page.name}}/{{h.version}}">View</a> - % if h.changelog: <em>{{h.changelog}}</em> % else: (no changelog) % end <br>Updated on {{h.updated_at}} </li> % end </ul> % include('footer.tpl')