diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-03-03 04:21:09 +0000 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-03 04:21:09 +0000 |
| commit | 67479c967198f2c054b2631d2826956d44ba16f6 (patch) | |
| tree | 45f4c9fb99802d6ec025c7de697621b20835cc8f | |
| parent | do cache blog index page (diff) | |
| download | website-67479c967198f2c054b2631d2826956d44ba16f6.tar.gz website-67479c967198f2c054b2631d2826956d44ba16f6.tar.bz2 website-67479c967198f2c054b2631d2826956d44ba16f6.zip | |
| -rw-r--r-- | src/web/_views/head.php | 1 | ||||
| -rw-r--r-- | src/web/_views/home/main.php | 4 | ||||
| -rw-r--r-- | src/web/lang/home.php | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/src/web/_views/head.php b/src/web/_views/head.php index b993489..c8c4ee0 100644 --- a/src/web/_views/head.php +++ b/src/web/_views/head.php @@ -28,6 +28,7 @@ <meta property="og:title" content="<?=$title?>"> <meta property="og:site_name" content="<?=CONFIG['domain']?>"> <meta property="og:image" content="<?=$this->get_url('public/icons/logo640.png', TRUE)?>"> + <meta name="fediverse:creator" content="@freya@freya.cat"> <title><?=$title?></title> <link rel="icon" type="image/png" sizes="16x16" href="<?=$this->get_url("public/icons/logo16.png", TRUE)?>"> <link rel="icon" type="image/png" sizes="32x32" href="<?=$this->get_url("public/icons/logo32.png", TRUE)?>"> diff --git a/src/web/_views/home/main.php b/src/web/_views/home/main.php index fc3799a..09d13de 100644 --- a/src/web/_views/home/main.php +++ b/src/web/_views/home/main.php @@ -48,6 +48,10 @@ <th><?=lang('contact_xmpp')?></th> <td><a href="xmpp:freya@freya.cat">freya@freya.cat</a></td> </tr> + <tr> + <th><?=lang('contact_sharkey')?></th> + <td><a rel="me" href="https://social.freya.cat/@freya">@freya@freya.cat</a></td> + </tr> <tr> <th>XSSbook</th> <td><a href="https://xssbook.com/profile?id=7">Admin istrator</a></td> diff --git a/src/web/lang/home.php b/src/web/lang/home.php index 70797ef..2270a79 100644 --- a/src/web/lang/home.php +++ b/src/web/lang/home.php @@ -36,3 +36,4 @@ $lang['contact'] = 'Contact Me'; $lang['contact_email'] = 'Email'; $lang['contact_matrix'] = 'Matrix'; $lang['contact_xmpp'] = 'XMPP'; +$lang['contact_sharkey'] = 'Sharkey'; |