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/parts/header.php | |
parent | read (diff) | |
download | rit.wtf-39e38a71528b7e7196ae4f227ebf399922a42dea.tar.gz rit.wtf-39e38a71528b7e7196ae4f227ebf399922a42dea.tar.bz2 rit.wtf-39e38a71528b7e7196ae4f227ebf399922a42dea.zip |
updates
Diffstat (limited to '')
-rw-r--r-- | web/parts/header.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/web/parts/header.php b/web/parts/header.php new file mode 100644 index 0000000..801ecfc --- /dev/null +++ b/web/parts/header.php @@ -0,0 +1,35 @@ + +<? /* needed for screen dither */ ?> +<div id="ditherMask"> +<div id="ditherFilter"> + +<? /* needed for screen strobe */ ?> +<menu id="strobe"></menu> + +<header id="header"> + + <? /* rit.wtf title */?> + <div id="title"> + <span style="animation-delay:-1.42s">r</span> + <span style="animation-delay:-1.22s">i</span> + <span style="animation-delay:-1.01s">t</span> + <span style="animation-delay:-0.81s">.</span> + <span style="animation-delay:-0.61s">w</span> + <span style="animation-delay:-0.41s">t</span> + <span style="animation-delay:-0.21s">f</span> + </div> + + <? /* nav bar */ ?> + <nav id="nav"> + <a href="/" class="btn"> + rit.wtf Home 🐯 + </a> + <a href="/gallery" class="btn"> + Munson Memorial 💀 + </a> + <a href="http://munsonmakesamillion.com/" target="_blank" class="btn"> + Munson Money 💸 + </a> + </nav> + +</header> |