diff options
| author | Jonas Kohl | 2024-07-20 17:17:08 +0200 | 
|---|---|---|
| committer | Jonas Kohl | 2024-07-20 17:17:08 +0200 | 
| commit | 390b8c658d5d4a5b3f4969bc9117f0e3f353a298 (patch) | |
| tree | e8d7a2e5a3027c2b50da1efd6999c5242eac2607 /src/includes | |
| parent | f49dd0b7823f3a3f136080f784f0430731e86b2d (diff) | |
Add 88x31 buttons
Diffstat (limited to 'src/includes')
| -rw-r--r-- | src/includes/buttons.php | 18 | 
1 files changed, 18 insertions, 0 deletions
diff --git a/src/includes/buttons.php b/src/includes/buttons.php new file mode 100644 index 0000000..b47b925 --- /dev/null +++ b/src/includes/buttons.php @@ -0,0 +1,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; +?>  |