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" patron = "Paypig"
TAGLINES = ( TAGLINES = (
"largest cat pics site",
"largest online LGBTQ+ club", "largest online LGBTQ+ club",
"largest online furfest", "largest online furfest",
"largest cat pics site",
"largest basket-weaving forum", "largest basket-weaving forum",
"largest autism support group", "largest autism support group",
"largest aztec heritage forum", "largest aztec heritage forum",

View File

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