aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorSean Dolan <sed9182@rit.edu>2019-07-27 21:14:12 -0400
committerSean Dolan <sed9182@rit.edu>2019-07-27 21:14:12 -0400
commitb32f17ec362e277ace95e461687e9e75e7300372 (patch)
treeea3f6c9cea7939425a912229eeb44d1cd79e584a /templates
Initial commit
Diffstat (limited to 'templates')
-rw-r--r--templates/Homepage.jinja28
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/Homepage.jinja2 b/templates/Homepage.jinja2
new file mode 100644
index 0000000..5d3316c
--- /dev/null
+++ b/templates/Homepage.jinja2
@@ -0,0 +1,8 @@
+{% extends "layout.html" %}
+{% block body %}
+ <ul>
+ {% for user in users %}
+ <li><a href="{{ user.url }}">{{ user.username }}</a></li>
+ {% endfor %}
+ </ul>
+{% endblock %} \ No newline at end of file