foxhole/templates/index.html

14 lines
216 B
HTML
Raw Normal View History

2023-07-30 14:48:50 +02:00
<html>
<head>
<title>Index</title>
</head>
<body>
<h1>Test</h1>
{% 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>