diff options
author | Freya Murphy <freya@freyacat.org> | 2025-02-07 15:35:47 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-02-07 15:35:47 -0500 |
commit | 39e38a71528b7e7196ae4f227ebf399922a42dea (patch) | |
tree | b7b0fa43a6704ba8969354dfa655a2d375699210 /web/gallery.php | |
parent | read (diff) | |
download | rit.wtf-39e38a71528b7e7196ae4f227ebf399922a42dea.tar.gz rit.wtf-39e38a71528b7e7196ae4f227ebf399922a42dea.tar.bz2 rit.wtf-39e38a71528b7e7196ae4f227ebf399922a42dea.zip |
updates
Diffstat (limited to 'web/gallery.php')
-rw-r--r-- | web/gallery.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/web/gallery.php b/web/gallery.php new file mode 100644 index 0000000..f35634c --- /dev/null +++ b/web/gallery.php @@ -0,0 +1,57 @@ +<?php + // home page of rit.wtf + $title = "rit.wtf - RIP Munson"; + include('parts/head.php'); + include('parts/header.php'); +?> + +<? /* munson */ ?> +<div id="munson"?> + <div class="title"?> + <span>The munson art gallery</span> + </div> + <div class="gallery"> + <?php + foreach (ASSETS->munson as $_key => $link) { + echo "<img src=\"{$link}\" loading=\"lazy\"/>"; + } + ?> + </div> +</div> + +<? /* films */ ?> +<div id="films"?> + <div class="title"?> + <span>Munson's sick films!</span> + </div> + <div class="films"> + <video autoplay muted loop> + <source src="<?=ASSETS->videos->wizard?>" type="video/mp4"> + </video> + <video autoplay muted loop> + <source src="<?=ASSETS->videos->raiders?>" type="video/mp4"> + </video> + <video autoplay muted loop> + <source src="<?=ASSETS->videos->brick?>" type="video/mp4"> + </video> + </div> +</div> + +<? /* raps */ ?> +<div id="raps"?> + <div class="title"?> + <span>Munson's sick raps!</span> + </div> + <div class="raps"> + <video autoplay muted loop> + <source src="<?=ASSETS->videos->review?>" type="video/mp4"> + </video> + <video autoplay muted loop> + <source src="<?=ASSETS->videos->jedi?>" type="video/mp4"> + </video> + </div> +</div> + +<?php + include('parts/footer.php'); +?> |