drop all styling from HTML feeds

...to emphasize that they're for readers, not for humans.

for #442
pull/676/head
Ryan Barrett 2023-10-12 10:01:11 -07:00
rodzic 023b05e216
commit 7e56f9e115
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6BE31FDF4776E9D4
1 zmienionych plików z 11 dodań i 11 usunięć

Wyświetl plik

@ -1,18 +1,18 @@
{% extends "base.html" %}
<!DOCTYPE html>
<html>
{% block title %}{{ g.user.handle_or_id() }}'s feed - Bridgy Fed{% endblock %}
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>{{ title }}</title>
</head>
{% block content %}
<div class="h-feed">
<div class="row big p-name">{{ title }}</div>
<link rel="stylesheet" href="/static/feed.css" type="text/css" />
<div class="row">
<body class="h-feed">
<div class="p-name">{{ title }}</div>
{% for e in entries %}
{{ e|safe }}
{% else %}
Nothing yet. <a href="/#To+use+it">Follow more people</a>, check back soon!
{% endfor %}
</div>
</div>
{% endblock %}
</body>
</html>