From 040acaad1a2770f424de5236778373cfb3ddc52a Mon Sep 17 00:00:00 2001 From: Ducky Date: Tue, 3 Sep 2024 16:45:25 +0100 Subject: [PATCH] Zio Blue: various rebranding changes --- bskyweb/templates/base.html | 4 ++-- bskyweb/templates/profile.html | 2 +- src/lib/strings/url-helpers.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index c2480279..4c0eb458 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -266,9 +266,9 @@ - + - + {% block html_head_extra -%}{%- endblock %} diff --git a/bskyweb/templates/profile.html b/bskyweb/templates/profile.html index 551dc15a..e151497c 100644 --- a/bskyweb/templates/profile.html +++ b/bskyweb/templates/profile.html @@ -10,7 +10,7 @@ {% block html_head_extra -%} {%- if profileView -%} - + {%- if requestURI %} diff --git a/src/lib/strings/url-helpers.ts b/src/lib/strings/url-helpers.ts index 4c8db839..88574eab 100644 --- a/src/lib/strings/url-helpers.ts +++ b/src/lib/strings/url-helpers.ts @@ -52,7 +52,7 @@ export function toNiceDomain(url: string): string { try { const urlp = new URL(url) if (`https://${urlp.host}` === BSKY_SERVICE) { - return 'Bluesky Social' + return 'Zio Blue' } return urlp.host ? urlp.host : url } catch (e) {