diff options
Diffstat (limited to 'includes/system.inc')
-rw-r--r-- | includes/system.inc | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/includes/system.inc b/includes/system.inc deleted file mode 100644 index ae624f9..0000000 --- a/includes/system.inc +++ /dev/null @@ -1,52 +0,0 @@ -<?php global $system; global $isLowerLoggedIn; global $systemCommonName; global $systemID; $title = $systemCommonName; require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/header.inc'; global $app; global $isLoggedIn; - -?> - -<div id="system-banner-container" style="width: calc(100% - 300px);height: 65vh;position: fixed;background-image: url('<?= getAsset($systemID, null, "banners") ?>');background-size: cover;background-position: center; top: 0;"> - <div id="system-banner-inner" style="height: 100%;width: 100%;background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,1) 100%);"></div> -</div> - -<script> - window.onscroll = () => { - document.getElementById("system-banner-container").style.height = (65 - ((window.scrollY / window.screen.availHeight) * 100)) + "vh"; - } -</script> - -<br> -<div class="container"> - - <div id="system-page" style="background-color: rgba(26,26,26,0.8);border-radius: 10px;padding:20px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);margin-top:30vh;"> - <?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/sysbanner.inc"; ?> - <br> - - <div id="page-content"> - <?= file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$systemID/content.html") ?> - </div> - <?php if ($system === "cloudburst") cloudburst(true); elseif ($system === "raindrops") raindrops(true); elseif ($isLoggedIn || $isLowerLoggedIn) other(true); ?> - </div> -</div> - -<div class="container"> - <hr> - <?php global $isLoggedIn; if ($isLoggedIn): ?> - <small style="opacity:.5;display:block;">(edit: <a href="/-/edit/<?= $system ?>"><?= $systemID === $app["other"]["id"] ? "page" : "public" ?></a>)</small> - <?php endif; ?> -</div> - -<style> - #hpd-cloudburst, #hpd-raindrops, #hpd-cloudburst, #hpd-other { - background: transparent !important; - padding: 0 !important; - margin-bottom: 0 !important; - } - - @media (max-width: 767px) { - #system-info > img { - display: block; - margin-left: auto; - margin-right: auto; - } - } -</style> - -<?php require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/footer.inc'; ?>
\ No newline at end of file |