- Added next and previous day at end of page.

This commit is contained in:
mbrandis 2014-11-14 15:38:11 +01:00
parent fda654b5e0
commit cd48801b0d

View file

@ -224,8 +224,9 @@ class HtmlEventHandler(EventHandler):
if self.lastComic is not None:
self.html.write(u'</ul>\n')
self.html.write(u'''</ul>
<a href="%s">Previous Day</a> | <a href="%s">Next Day</a>
</body>
</html>''')
</html>''') % (yesterdayUrl, tomorrowUrl)
self.html.close()