From 99035ffe8c531540a68f415dcd4dc3ae668c1548 Mon Sep 17 00:00:00 2001 From: jieun Date: Tue, 4 Apr 2017 17:21:00 -0400 Subject: [PATCH] add html page to go with new route --- app/templates/allposts.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/templates/allposts.html diff --git a/app/templates/allposts.html b/app/templates/allposts.html new file mode 100644 index 0000000..b422f65 --- /dev/null +++ b/app/templates/allposts.html @@ -0,0 +1,20 @@ + +{% extends "base.html" %} + +{% block content %} + {% for post in posts %} + {% include 'post.html' %} + {% endfor %} + +{% endblock %}