blob: 22cc85643b5fcab4025846a495b602e77f2069fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?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_anime')?></th>
<td><?=lang('interests_anime_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>XSSbook</th>
<td><a href="https://xssbook.com/profile?id=7">Admin istrator</a></td>
</tr>
</tbody>
</table>
</div>
</div>
|