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 %} +