From f7d8c7284d2ec48d1ff27ab7ebc6dfafa32728e4 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 14 Jan 2022 01:39:39 +0200 Subject: [PATCH] b --- files/templates/admin/admin_home.html | 2 +- files/templates/admin/alt_votes.html | 2 +- files/templates/admin/content_stats.html | 2 +- files/templates/admin/sidebar.html | 2 +- files/templates/api.html | 2 +- files/templates/authforms.html | 6 +- files/templates/comments.html | 6 +- files/templates/contact.html | 6 +- files/templates/default.html | 84 +++++++++++------------ files/templates/delete_post_modal.html | 4 +- files/templates/email/2fa_remove.html | 2 +- files/templates/email/default.html | 4 +- files/templates/email/email_change.html | 6 +- files/templates/email/email_verify.html | 6 +- files/templates/email/password_reset.html | 2 +- files/templates/forgot_password.html | 4 +- files/templates/formatting.html | 10 +-- files/templates/header.html | 4 +- files/templates/login.html | 6 +- files/templates/login_2fa.html | 6 +- files/templates/lost_2fa.html | 2 +- files/templates/oauth.html | 2 +- files/templates/privacy.html | 2 +- files/templates/reset_password.html | 2 +- files/templates/search.html | 2 +- files/templates/settings.html | 20 +++--- files/templates/settings2.html | 18 ++--- files/templates/settings_apps.html | 2 +- files/templates/settings_blocks.html | 2 +- files/templates/settings_css.html | 2 +- files/templates/settings_filters.html | 2 +- files/templates/settings_profile.html | 10 +-- files/templates/settings_profilecss.html | 2 +- files/templates/settings_security.html | 6 +- files/templates/sidebar.html | 2 +- files/templates/sidebar_Drama.html | 8 ++- files/templates/sign_up.html | 20 +++--- files/templates/sign_up_failed_ref.html | 18 ++--- files/templates/submission.html | 22 +++--- files/templates/submission_listing.html | 2 +- files/templates/submit.html | 4 +- files/templates/terms.html | 2 +- files/templates/userpage.html | 6 +- files/templates/userpage_reserved.html | 2 +- files/templates/votes.html | 2 +- 45 files changed, 167 insertions(+), 161 deletions(-) diff --git a/files/templates/admin/admin_home.html b/files/templates/admin/admin_home.html index ff10116e66..9ae37a1702 100644 --- a/files/templates/admin/admin_home.html +++ b/files/templates/admin/admin_home.html @@ -1,7 +1,7 @@ {% extends "default.html" %} {% block title %} -{{'SITE_NAME' | app_config}} +{{SITE_NAME}} {% endblock %} diff --git a/files/templates/admin/alt_votes.html b/files/templates/admin/alt_votes.html index 0c6cbc4729..69751aa93f 100644 --- a/files/templates/admin/alt_votes.html +++ b/files/templates/admin/alt_votes.html @@ -1,7 +1,7 @@ {% extends "default.html" %} {% block title %} -{{'SITE_NAME' | app_config}} +{{SITE_NAME}} {% endblock %} diff --git a/files/templates/admin/content_stats.html b/files/templates/admin/content_stats.html index 2299101a32..5bcb1eddc6 100644 --- a/files/templates/admin/content_stats.html +++ b/files/templates/admin/content_stats.html @@ -1,7 +1,7 @@ {% extends "default.html" %} {% block title %} -{{'SITE_NAME' | app_config}} +{{SITE_NAME}} {% endblock %} diff --git a/files/templates/admin/sidebar.html b/files/templates/admin/sidebar.html index 7c50a403ed..21f7c22b2e 100644 --- a/files/templates/admin/sidebar.html +++ b/files/templates/admin/sidebar.html @@ -1,6 +1,6 @@ {% extends "default.html" %} -{% block pagetitle %}Edit {{'SITE_NAME' | app_config}} sidebar{% endblock %} +{% block pagetitle %}Edit {{SITE_NAME}} sidebar{% endblock %} {% block content %} diff --git a/files/templates/api.html b/files/templates/api.html index 49b84a13b0..f95eda437e 100644 --- a/files/templates/api.html +++ b/files/templates/api.html @@ -1,7 +1,7 @@ {% extends "default.html" %} {% block title %} -{{'SITE_NAME' | app_config}} - API +{{SITE_NAME}} - API {% endblock %} diff --git a/files/templates/authforms.html b/files/templates/authforms.html index 5c521456db..fcdc19e65a 100644 --- a/files/templates/authforms.html +++ b/files/templates/authforms.html @@ -10,7 +10,7 @@ - {% block pagetitle %}{{'SITE_NAME' | app_config}}{% endblock %} + {% block pagetitle %}{{SITE_NAME}}{% endblock %} {% if v %} @@ -66,7 +66,7 @@

{% block authtitle %}{% endblock %}

@@ -111,7 +111,7 @@
- cover + cover
diff --git a/files/templates/comments.html b/files/templates/comments.html index 492a3ee7b1..638b7b31b2 100644 --- a/files/templates/comments.html +++ b/files/templates/comments.html @@ -161,7 +161,7 @@ {{c.post.realtitle(v) | safe}} {% endif %} {% elif c.author_id==NOTIFICATIONS_ID or c.author_id==AUTOJANNY_ID %} - {{'SITE_NAME' | app_config}} Notification + {{SITE_NAME}} Notification {% else %} {% if c.sentto == 0 %} Sent to admins @@ -207,7 +207,7 @@ {% if c.is_pinned %} {% endif %} - {% if c.distinguish_level %}{% endif %} + {% if c.distinguish_level %}{% endif %} {% if c.is_op %}{% endif %} {% if c.is_bot %}{% endif %} {% if c.is_blocking %}{% endif %} @@ -712,7 +712,7 @@ -

Your comment will be removed everywhere on {{'SITE_NAME' | app_config}}. This action can be undone.

+

Your comment will be removed everywhere on {{SITE_NAME}}. This action can be undone.

{% endif %} -

Contact {{'SITE_NAME' | app_config}} Admins

+

Contact {{SITE_NAME}} Admins

-

Use this form to contact {{'SITE_NAME' | app_config}} Admins.

+

Use this form to contact {{SITE_NAME}} Admins.

diff --git a/files/templates/default.html b/files/templates/default.html index da51fe7b8b..112ade1b65 100644 --- a/files/templates/default.html +++ b/files/templates/default.html @@ -38,27 +38,27 @@ - + - + {% block title %} - {{'SITE_NAME' | app_config}} + {{SITE_NAME}} - + - + - + - + - - + + {% endblock %} @@ -67,12 +67,12 @@ - + - - - - + + + + @@ -82,127 +82,127 @@ {% block fixedMobileBarJS %} @@ -227,11 +227,11 @@ {% if v %} - + {% else %} - + {% endif %} {% endif %} @@ -276,7 +276,7 @@ {% if request.host == 'pcmemes.net' %} {% set template = "sidebar_PCM.html" %} {% else %} - {% set template = "sidebar_" + environ.get("SITE_NAME") + ".html" %} + {% set template = "sidebar_" + SITE_NAME + ".html" %} {% endif %} {% block sidebar %} diff --git a/files/templates/delete_post_modal.html b/files/templates/delete_post_modal.html index c57479c75b..cfbd216b87 100644 --- a/files/templates/delete_post_modal.html +++ b/files/templates/delete_post_modal.html @@ -17,9 +17,9 @@
Delete post?
-

Your post will be removed everywhere on {{'SITE_NAME' | app_config}}. This action can be undone.

+

Your post will be removed everywhere on {{SITE_NAME}}. This action can be undone.

-

Your post will be removed everywhere on {{'SITE_NAME' | app_config}}. This action can be undone.

+

Your post will be removed everywhere on {{SITE_NAME}}. This action can be undone.

diff --git a/files/templates/email/2fa_remove.html b/files/templates/email/2fa_remove.html index 06af4bf297..2732be89c2 100644 --- a/files/templates/email/2fa_remove.html +++ b/files/templates/email/2fa_remove.html @@ -22,7 +22,7 @@ https://litmus.com/blog/a-guide-to-bulletproof-buttons-in-email-design --> -

Please note that {{'SITE_NAME' | app_config}} will never ask you for your email, password, or two-factor token via email, text, or phone.

+

Please note that {{SITE_NAME}} will never ask you for your email, password, or two-factor token via email, text, or phone.