summaryrefslogtreecommitdiff
path: root/src/includes/buttons.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/includes/buttons.php')
-rw-r--r--src/includes/buttons.php18
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;
+?>