aboutsummaryrefslogtreecommitdiff
path: root/includes/gui
diff options
context:
space:
mode:
Diffstat (limited to 'includes/gui')
-rw-r--r--includes/gui/header.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/includes/gui/header.php b/includes/gui/header.php
new file mode 100644
index 0000000..8814b5b
--- /dev/null
+++ b/includes/gui/header.php
@@ -0,0 +1,15 @@
+<?php
+
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/core/Main.php";
+global $title;
+
+?>
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="stylesheet" href="/assets/bootstrap.min.css">
+ <title><?= WebCore\GUI\Metadata::title($title) ?></title>
+</head>
+<body> \ No newline at end of file