diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-20 16:49:11 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-20 16:49:11 -0400 |
commit | cec4fb7ede7fee7b5621c096f3d5a4863b7b484e (patch) | |
tree | 9f0af211e9b2f9035220d94d07cd8edf381f61c1 /src/web/_views/head.php | |
parent | update john (diff) | |
download | website-cec4fb7ede7fee7b5621c096f3d5a4863b7b484e.tar.gz website-cec4fb7ede7fee7b5621c096f3d5a4863b7b484e.tar.bz2 website-cec4fb7ede7fee7b5621c096f3d5a4863b7b484e.zip |
refactor config and add allowed_hosts
Diffstat (limited to 'src/web/_views/head.php')
-rw-r--r-- | src/web/_views/head.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/_views/head.php b/src/web/_views/head.php index ead45d6..ab7bb1b 100644 --- a/src/web/_views/head.php +++ b/src/web/_views/head.php @@ -6,12 +6,12 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="author" content="freya"> <meta name="description" content="<?=$desc?>"> - <meta name="theme-color" content="<?=lang('theme_color')?>"> + <meta name="theme-color" content="<?=CONFIG['theme_color']?>"> <meta name="referrer" content="origin"> <meta name="color-scheme" content="none"> <meta property="og:description" content="<?=$desc?>"> <meta property="og:title" content="<?=$title?>"> - <meta property="og:site_name" content="<?=lang('domain')?>"> + <meta property="og:site_name" content="<?=CONFIG['domain']?>"> <meta property="og:image" content="<?=$this->get_url('public/icons/logo640.png', TRUE)?>"> <title><?=$title?></title> <link rel="icon" type="image/png" sizes="16x16" href="<?=$this->get_url("public/icons/logo16.png", TRUE)?>"> |