foxhole/templates/index.html

14 lines
217 B
HTML
Raw Normal View History

2023-07-30 14:48:50 +02:00
<html>
<head>
<title>Index</title>
</head>
<body>
2023-08-14 14:10:33 +02:00
<h1>Index</h1>
2023-07-30 14:48:50 +02:00
{% for status in statues recursive%}
{{ status.content | safe }}
2023-07-30 15:09:07 +02:00
{{ status.created_at }}
<hr/>
2023-07-30 14:48:50 +02:00
{% endfor %}
</body>
</html>