18 lines
682 B
PHP
18 lines
682 B
PHP
|
<!doctype html>
|
||
|
<html data-theme="<?= $config['colorScheme']; ?>">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta name="robots" content="noindex">
|
||
|
<meta name="description" content="<?= $config['desc']; ?>">
|
||
|
<meta name="color-scheme" content="<?= $config['colorScheme']; ?>">
|
||
|
<title><?= $config['title']; ?></title>
|
||
|
<link rel="stylesheet" href="assets/css/style.css" />
|
||
|
<?php if (file_exists('assets/css/user.css')) : ?>
|
||
|
<link rel="stylesheet" href="assets/css/user.css" />
|
||
|
<?php endif; ?>
|
||
|
<link rel="icon" type="image/png" href="<?= $config['favicon']; ?>">
|
||
|
</head>
|
||
|
|
||
|
<body>
|