From d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sat, 5 Nov 2022 14:17:27 -0600 Subject: Initial commit (users and statuses) --- templates/index.html | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 templates/index.html (limited to 'templates/index.html') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..dfd1805 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block title %}Welcome{% endblock %} + +{% block content %} + {% for identity in identities %} + {{ identity }} + {% endfor %} +{% endblock %} -- cgit v1.2.3