diff options
author | Minteck <contact@minteck.org> | 2022-06-16 11:37:18 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-06-16 11:37:18 +0200 |
commit | 060473d7e7da51bf372b3d2958580b8f65f4769b (patch) | |
tree | 0ccefc7dd4ba076474a09e2d8aa5aa6df83b8f20 /old/includes/header.php | |
parent | 825a95e13bd2e712544a5ba40c739da053d90f1c (diff) | |
download | ember-060473d7e7da51bf372b3d2958580b8f65f4769b.tar.gz ember-060473d7e7da51bf372b3d2958580b8f65f4769b.tar.bz2 ember-060473d7e7da51bf372b3d2958580b8f65f4769b.zip |
This is the new Ember
Diffstat (limited to 'old/includes/header.php')
-rw-r--r-- | old/includes/header.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/old/includes/header.php b/old/includes/header.php new file mode 100644 index 0000000..09257fe --- /dev/null +++ b/old/includes/header.php @@ -0,0 +1,30 @@ +<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/functions.php"; global $title; ?> +<!DOCTYPE html> +<html lang="en"> +<head data-webx-version="<?= version() ?>" data-webx-build="#<?= build() ?>"> + <meta charset="UTF-8"> + <title><?php + + if (isset($title)) { + echo "$title | "; + } + + ?>Minteck</title> + <meta name="description" content="Minteck's Website"> + <meta name="version" content="<?= version() ?> (#<?= build() ?>)"> + <link rel="stylesheet" href="/assets/css/bootstrap.min.css"> + <link rel="stylesheet" href="/assets/css/main.css"> + <script src="/assets/js/bootstrap.bundle.min.js"></script> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png"> + <link rel="shortcut icon" type="image/x-icon" href="/assets/favicon/favicon.ico"> + <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="48x48" href="/assets/favicon/favicon-48x48.png"> + <link rel="icon" type="image/png" sizes="64x64" href="/assets/favicon/favicon-64x64.png"> + <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png"> + <link rel="manifest" href="/assets/favicon/manifest.json"> + <link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#a56510"> + <meta name="msapplication-TileColor" content="#a56510"> + <meta name="theme-color" content="#a56510"> +</head> +<body class="bg-dark">
\ No newline at end of file |