Nofu/template/default/header.php
2024-06-14 17:20:01 +02:00

18 lines
No EOL
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>