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
|
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<?php
$footer_text = lang('footer_text', NULL);
if ($footer_text) {
$footer_text = $footer_text[array_rand($footer_text)];
} else {
$footer_text = '';
}
?>
</div>
</div>
<div id="footer" role="contentinfo" aria-label="footer">
<?=lang('license_pre')?>
<a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>
<br>
<?=lang('copyright')?> <?=lang('first_name')?> <?=lang('last_name')?> <?=date('Y')?>
<br>
<span class="footer-text">
<?=$footer_text?>
</span>
<div class="buttons">
<?=image('buttons/eyes', 'alt_button_eyes', animated: TRUE, width: '88', height: '30')?>
<?=image('buttons/vim', 'alt_button_vim', animated: TRUE, width: '88', height: '30')?>
<?=image('buttons/gnu-linux', 'alt_button_gnu_linux', width: '88', height: '30')?>
<a href="https://www.eff.org/join">
<?=image('buttons/eff', 'alt_button_eff', width: '96', height: '30')?>
</a>
<a href="https://citrons.xyz/a/memetic-apioform-page.html">
<?=image('buttons/apiopage', 'alt_button_apiopage', width: '81', height: '30')?>
</a>
</div>
<br>
<iframe
height="94"
class="john"
<?php /* hack to disable firefox cookie warning*/?>
sandbox="allow-scripts"
title="<?=lang('john_title')?>"
src="https://john.citrons.xyz/embed?ref=freya.cat"
></iframe>
<iframe
height="40"
class="bucket"
scrolling="no"
title="<?=lang('bucket_title')?>"
src="<?=$this->get_url('bucket?name=freya')?>"
></iframe>
</div>
</div>
<?=ie('</center>')?>
</body>
</html>
|