From 6256335ef802e2823ac0118c01c7fe31e38e7287 Mon Sep 17 00:00:00 2001 From: blendoit Date: Wed, 22 Jan 2020 18:17:38 -0800 Subject: Second commit. --- app/templates/home.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 app/templates/home.html (limited to 'app/templates/home.html') diff --git a/app/templates/home.html b/app/templates/home.html new file mode 100644 index 0000000..89984eb --- /dev/null +++ b/app/templates/home.html @@ -0,0 +1,24 @@ + + + +{% extends "base.html" %} + +{% block content %} + +
+ + + +
+ {% for post in posts %} +
+

{{post.author}}

+

{{post.date}}

+

{{post.content}}

+
+ {% endfor %} +
+
+ + +{% endblock content %} -- cgit v1.2.3