From 76c57cc6aa9e558653dc636384849192ee21c95e Mon Sep 17 00:00:00 2001 From: ppsn Date: Mon, 10 Apr 2023 12:14:56 +0300 Subject: [PATCH] added links to repos --- views/preferences.pug | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/views/preferences.pug b/views/preferences.pug index 3a98080..788b8d4 100644 --- a/views/preferences.pug +++ b/views/preferences.pug @@ -14,13 +14,13 @@ html form(action="/saveprefs", method="POST") legend Privacy .setting - label(for="domain_twitter") Replace Twitter links with Nitter (blank to disable): + label(for="domain_twitter") Replace Twitter links with Nitter (blank to disable): if(user_preferences.domain_twitter != '' && typeof(user_preferences.domain_twitter) != 'undefined') input(type="text", name="domain_twitter", id="domain_twitter", value="" + user_preferences.domain_twitter + "", placeholder="e.g. nitter.net") else input(type="text", name="domain_twitter", id="domain_twitter", placeholder="e.g. nitter.net") .setting - label(for="domain_youtube") Replace YouTube links with Invidious/Piped (blank to disable): + label(for="domain_youtube") Replace YouTube links with Invidious/Piped (blank to disable): if(user_preferences.domain_youtube != '' && typeof(user_preferences.domain_youtube) != 'undefined') input(type="text", name="domain_youtube", id="domain_youtube", value="" + user_preferences.domain_youtube + "", placeholder="e.g. invidious.site") else @@ -32,13 +32,13 @@ html else input(type="text", name="domain_instagram", id="domain_instagram", placeholder="e.g. bibliogram.art") .setting - label(for="domain_quora") Replace Quora links with Quetre (blank to disable): + label(for="domain_quora") Replace Quora links with Quetre (blank to disable): if(user_preferences.domain_quora != '' && typeof(user_preferences.domain_quora) != 'undefined') input(type="text", name="domain_quora", id="domain_quora", value="" + user_preferences.domain_quora + "", placeholder="e.g. quetre.iket.me") else input(type="text", name="domain_quora", id="domain_quora", placeholder="e.g. quetre.iket.me") .setting - label(for="domain_imgur") Replace Imgur links with Rimgo (blank to disable): + label(for="domain_imgur") Replace Imgur links with Rimgo (blank to disable): if(user_preferences.domain_imgur != '' && typeof(user_preferences.domain_imgur) != 'undefined') input(type="text", name="domain_imgur", id="domain_imgur", value="" + user_preferences.domain_imgur + "", placeholder="e.g. rimgo.bcow.xyz") else @@ -112,7 +112,7 @@ html for(let key in instance_config.post_media_max_heights) { if(instance_config.post_media_max_heights.hasOwnProperty(key)) - max_heights_html += `` + max_heights_html += `` } != max_heights_html .setting