diff options
author | Freya Murphy <freya@freyacat.org> | 2024-05-24 09:05:42 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-05-24 09:05:42 -0400 |
commit | c5f39ea2cd7cf02246705ea8872d3b350526165c (patch) | |
tree | 2694f9fdc5d83b529a01f2997c1d89c271c86592 /src/web/_views/apps/home.php | |
download | website-c5f39ea2cd7cf02246705ea8872d3b350526165c.tar.gz website-c5f39ea2cd7cf02246705ea8872d3b350526165c.tar.bz2 website-c5f39ea2cd7cf02246705ea8872d3b350526165c.zip |
initial
Diffstat (limited to 'src/web/_views/apps/home.php')
-rw-r--r-- | src/web/_views/apps/home.php | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/web/_views/apps/home.php b/src/web/_views/apps/home.php new file mode 100644 index 0000000..8e59423 --- /dev/null +++ b/src/web/_views/apps/home.php @@ -0,0 +1,55 @@ +<?php /* Copyright (c) 2024 Freya Murphy */ ?> +<div class="col left"> + <?=aria_section('about', lang('about'))?> + <p><?=lang('section_about')?></p> + </div> + + <?=aria_section('whats_new', lang('whats_new'))?> + <p><?=lang('section_whats_new')?></p> + </div> +</div> + +<div class="col right"> + <?=aria_section('interests', lang('interests'))?> + <table> + <tbody> + <tr> + <th><?=lang('interests_general')?></th> + <td><?=lang('interests_general_value')?></td> + </tr> + <tr> + <th><?=lang('interests_music')?></th> + <td><?=lang('interests_music_value')?></td> + </tr> + <tr> + <th><?=lang('interests_comics')?></th> + <td><?=lang('interests_comics_value')?></td> + </tr> + </tbody> + </table> + </div> + + <?=aria_section('contact', lang('contact'))?> + <table> + <tbody> + <tr> + <th><?=lang('contact_email')?></th> + <td><a href="mailto:contact@freyacat.org">contact@freyacat.org</a></td> + </tr> + <tr> + <th><?=lang('contact_matrix')?></th> + <td><a href="https://matrix.to/#/@freya:freya.cat">@freya:freya.cat</a></td> + </tr> + <tr> + <th><?=lang('contact_xmpp')?></th> + <td><a href="xmpp:freya@freya.cat">freya@freya.cat</a></td> + </tr> + <tr> + <th><?=lang('contact_mastodon')?></th> + <td><a href="https://social.freya.cat/@freya">@freya@freya.cat</a></td> + </tr> + </tbody> + </table> + </div> +</div> + |