diff options
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> + |