blob: b47b92571fc8ea20579d0b6dd86cbc34570d2dcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
foreach ([
"pronouns" => "they/them, she/her, he/him",
"bestview" => "Best viewed with Netscape or Internet Explorer",
"neocities-now" => "Neocities, now!",
"macmade-wht" => "Made on a Mac",
"pride" => "Pride, now!",
"desktop" => "Best viewed on Desktop",
] as $src => $alt):
?>
<img src="/static/buttons/<?= htmlentities($src) ?>.gif"
alt="<?= htmlentities($alt) ?>"
width="88"
height="31"
class="web-button" />
<?php
endforeach;
?>
|