This commit is contained in:
Yon 2024-05-26 18:16:28 +00:00
parent a5752573eb
commit df5b528f13

View file

@ -0,0 +1,10 @@
<?php
if (date('m') == 6) { // 6 is the month number for June
header("Content-type: text/css; charset=utf-8");
?>
body {
background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://upload.wikimedia.org/wikipedia/commons/4/48/Gay_Pride_Flag.svg');
}
<?php
}
?>