From 803d20968fea1e25a298aa3b4e670d5670995e0d Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 5 Dec 2011 22:38:43 -0500 Subject: Added as example app --- templates/my_pastes.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/my_pastes.html (limited to 'templates/my_pastes.html') diff --git a/templates/my_pastes.html b/templates/my_pastes.html new file mode 100644 index 0000000..64967ad --- /dev/null +++ b/templates/my_pastes.html @@ -0,0 +1,13 @@ +{% extends "layout.html" %} +{% block title %}My Pastes{% endblock %} +{% from '_pagination.html' import render_pagination %} +{% block body %} +

My Pastes

+ + {{ render_pagination(pagination) }} +{% endblock %} -- cgit