rit.wtf/web/fire.php

23 lines
527 B
PHP
Raw Normal View History

2025-02-07 20:35:47 +00:00
<?php
// home page of rit.wtf
$title = "rit.wtf - 🔥🔥🔥";
include('parts/head.php');
include('parts/header.php');
?>
<? /* fires */ ?>
<div id="fires">
<?php
$rev = FALSE;
foreach (ASSETS->fires as $_key => $link) {
$dir = ($rev) ? "left" : "right";
echo "<marquee truespeed scrolldelay=\"10\" direction=\"{$dir}\"><img src=\"{$link}\" loading=\"lazy\"></marquee>";
$rev = !$rev;
}
?>
</div>
<?php
include('parts/footer.php');
?>