Zio Blue: various rebranding changes

zio/stable
Ducky 2024-09-03 16:45:25 +01:00
parent 63f2bba08f
commit 040acaad1a
3 changed files with 4 additions and 4 deletions

View File

@ -266,9 +266,9 @@
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png">
<link rel="mask-icon" href="/static/safari-pinned-tab.svg" color="#1185fe"> <link rel="mask-icon" href="/static/safari-pinned-tab.svg" color="#1185fe">
<meta name="theme-color"> <meta name="theme-color">
<meta name="application-name" content="Bluesky"> <meta name="application-name" content="Zio Blue">
<meta name="generator" content="bskyweb"> <meta name="generator" content="bskyweb">
<meta property="og:site_name" content="Bluesky Social" /> <meta property="og:site_name" content="Zio Blue" />
<link type="application/activity+json" href="" /> <link type="application/activity+json" href="" />
{% block html_head_extra -%}{%- endblock %} {% block html_head_extra -%}{%- endblock %}

View File

@ -10,7 +10,7 @@
{% block html_head_extra -%} {% block html_head_extra -%}
{%- if profileView -%} {%- if profileView -%}
<meta property="og:site_name" content="Bluesky Social"> <meta property="og:site_name" content="Zio Blue">
<meta property="og:type" content="profile"> <meta property="og:type" content="profile">
<meta property="profile:username" content="{{ profileView.Handle }}"> <meta property="profile:username" content="{{ profileView.Handle }}">
{%- if requestURI %} {%- if requestURI %}

View File

@ -52,7 +52,7 @@ export function toNiceDomain(url: string): string {
try { try {
const urlp = new URL(url) const urlp = new URL(url)
if (`https://${urlp.host}` === BSKY_SERVICE) { if (`https://${urlp.host}` === BSKY_SERVICE) {
return 'Bluesky Social' return 'Zio Blue'
} }
return urlp.host ? urlp.host : url return urlp.host ? urlp.host : url
} catch (e) { } catch (e) {