diff options
author | RaindropsSys <contact@minteck.org> | 2023-04-02 23:13:13 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-04-02 23:13:13 +0200 |
commit | bbf20f987bb6a7561be3d98518ddaa41b71eaf67 (patch) | |
tree | 235fce3ee43aa4c4fd82508182aad7974a76cf63 /includes/components | |
parent | 02eda3e4c9b4ba718f1fff70b7328ed8cdd5e63b (diff) | |
download | pluralconnect-bbf20f987bb6a7561be3d98518ddaa41b71eaf67.tar.gz pluralconnect-bbf20f987bb6a7561be3d98518ddaa41b71eaf67.tar.bz2 pluralconnect-bbf20f987bb6a7561be3d98518ddaa41b71eaf67.zip |
Updated includes/components/header.inc (automated)
Diffstat (limited to 'includes/components')
-rw-r--r-- | includes/components/header.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/components/header.inc b/includes/components/header.inc index 0542314..c87e5a5 100644 --- a/includes/components/header.inc +++ b/includes/components/header.inc @@ -55,13 +55,13 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <link href="/assets/logo/custom.css" rel="stylesheet"> + <link href="/assets/logo/custom.css" rel="preload" as="style" onload="this.rel = 'stylesheet'"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script> <title><?= $title && $title !== "-" ? $title . " ยท " : "" ?>Cold Haze</title> <link rel="shortcut icon" href="/assets/logo/newlogo<?= $isLoggedIn || $isLowerLoggedIn ? "3" : "" ?>.png" type="image/png"> </head> -<body> +<body style="background-color: #000;"> <?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/components/navigation.inc"; global $navigation; ?> <?php if (!$useNewUI): ?> |