only show the first tagline to loggedout

pull/222/head
Aevann 2024-02-17 14:31:03 +02:00
parent b3526d35a5
commit c425a2af65
2 changed files with 5 additions and 2 deletions

View File

@ -263,9 +263,9 @@ if SITE_NAME == 'rDrama':
patron = "Paypig"
TAGLINES = (
"largest cat pics site",
"largest online LGBTQ+ club",
"largest online furfest",
"largest cat pics site",
"largest basket-weaving forum",
"largest autism support group",
"largest aztec heritage forum",

View File

@ -6,8 +6,11 @@
{% elif request.path == '/' %}
{% if IS_DKD() %}
<title>Kongrama</title>
{% else %}
{# DELETE_ME_PLS #}
{% elif v %}
<title>{{SITE_NAME}}{% if TAGLINES %}: {{TAGLINES|random()}}{% endif %}</title>
{% else %}
<title>{{SITE_NAME}}{% if TAGLINES %}: {{TAGLINES[0]}}{% endif %}</title>
{% endif %}
{% else %}
{{super()}}