From 31bac8ab56e4865cf4441f1e3c738cec4b2b795c Mon Sep 17 00:00:00 2001 From: Cadence Ember Date: Sat, 10 Dec 2022 18:57:05 +1300 Subject: [PATCH] nofollow to fandom.com --- src/application-globals.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/application-globals.rkt b/src/application-globals.rkt index e6feaaf..7caa270 100644 --- a/src/application-globals.rkt +++ b/src/application-globals.rkt @@ -67,13 +67,13 @@ ,(format "This unofficial instance is based off the ~a source code, but is not controlled by the code developer." (config-get 'application_name))))) ,(if source-url `(div (p "This page displays proxied content from " - (a (@ (href ,source-url) (rel "noreferrer")) ,source-url) + (a (@ (href ,source-url) (rel "nofollow noreferrer")) ,source-url) ,(format ". Text content is available under the ~a license, " (license^-text license)) (a (@ (href ,(license^-url license))) "see license info.") " Media files may have different copying restrictions.") (p ,(format "Fandom is a trademark of Fandom, Inc. ~a is not affiliated with Fandom." (config-get 'application_name)))) `(div (p "Text content on wikis run by Fandom is available under the Creative Commons Attribution-Share Alike License 3.0 (Unported), " - (a (@ (href "https://www.fandom.com/licensing")) "see license info.") + (a (@ (href "https://www.fandom.com/licensing") (rel "nofollow")) "see license info.") " Media files and official Fandom documents have different copying restrictions.") (p ,(format "Fandom is a trademark of Fandom, Inc. ~a is not affiliated with Fandom." (config-get 'application_name))))))))