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