Refactoring for publish, and also addition of "Services" page

This commit is contained in:
Halbear
2026-04-04 13:54:37 +01:00
parent b016e6bd13
commit e4f387d27a
235 changed files with 174 additions and 91 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
if(isset($_GET['desktop'])) $_SESSION['desktop'] = $_GET['desktop'];
if(isset($_GET['fullscreen']) && $_GET['fullscreen']){
$Page = "Forum";
require_once("Hotbar.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Halbear.Net</title>
<link rel="stylesheet" href="Modernised.css">
</head>
<body>
<script>
var Button = document.getElementById("ForumBtn");
Button.onclick = function(){document.location.href='index.php';};
Button.children[0].textContent = "Home";
</script>
</body>