From 2f1d0719faa0d955a82e87c0ea022f458e1c699f Mon Sep 17 00:00:00 2001 From: blendoit Date: Wed, 22 Jan 2020 18:15:52 -0800 Subject: First commit. --- website/app/templates/home.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 website/app/templates/home.html (limited to 'website/app/templates/home.html') diff --git a/website/app/templates/home.html b/website/app/templates/home.html new file mode 100644 index 0000000..89984eb --- /dev/null +++ b/website/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