Change feed title to use human-readable SITE_TITLE.

This commit is contained in:
TLSM 2022-09-05 01:35:20 -04:00 committed by Ben Rog-Wilhelm
parent ef65a3f341
commit bb142eda53

View file

@ -27,7 +27,7 @@ def feeds_front(sort='hot', t='all'):
doc, tag, text = Doc().tagtext()
with tag("feed", ("xmlns:media","http://search.yahoo.com/mrss/"), xmlns="http://www.w3.org/2005/Atom",):
with tag("title", type="text"):
text(f"{sort} posts from {SITE}")
text(f"{sort} posts from {SITE_TITLE}")
with tag("id"):
text(SITE_FULL + request.full_path)