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/layout.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 templates/layout.html (limited to 'templates/layout.html') diff --git a/templates/layout.html b/templates/layout.html new file mode 100644 index 0000000..206f750 --- /dev/null +++ b/templates/layout.html @@ -0,0 +1,28 @@ + +{% block title %}{% endblock %} | Flask Pastebin + + + + + +
+

Flask Pastebin

+ + {% for message in get_flashed_messages() %} +

{{ message }} + {% endfor %} + {% block body %}{% endblock %} +

-- cgit