bridgy-fed/templates/feed.html

19 wiersze
354 B
HTML

<!DOCTYPE html>
<html>
2022-11-17 15:58:08 +00:00
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>{{ title }}</title>
</head>
2022-11-17 15:58:08 +00:00
<body class="h-feed">
<div class="p-name">{{ title }}</div>
2022-11-17 15:58:08 +00:00
{% for e in entries %}
{{ e|safe }}
{% else %}
Nothing yet. <a href="/#To+use+it">Follow more people</a>, check back soon!
{% endfor %}
</body>
</html>