1
0
Fork 0
nixos-config/overlays/mastodon-digest/index.html.jinja
2023-02-20 12:37:48 +01:00

24 lines
532 B
Django/Jinja

<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mastodon Digest</title>
{% include "style.html.jinja" %}
{% include "scripts.html.jinja" %}
</head>
<body>
<div id="container">
<h1>Mastodon Digest</h1>
<section class="posts">
{% if posts %}
{% with posts=posts %}
{% include "posts.html.jinja" %}
{% endwith %}
{% endif %}
</section>
</div>
</body>
</html>