aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/layout.php
blob: 91ae378d4ec1ceaf0fd64bb33695aafc1ab4248f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf8" />

    <meta name="viewport" content="width=device-width" />
    <?php if (!empty($favicon)) {
        ?>
        <link rel="shortcut icon" href="<?= Model::faviconpath() . $favicon ?>" type="image/x-icon">
    <?php } elseif (!empty(Config::defaultfavicon())) { ?>
        <link rel="shortcut icon" href="<?= Model::faviconpath() . Config::defaultfavicon() ?>" type="image/x-icon">
    <?php } ?>
    <title><?= $title ?></title>
    <link rel="stylesheet" href="<?= $css ?>">
    <?php
    if (!empty(Config::interfacecss())) {
        echo '<link rel="stylesheet" href="' . Model::csspath() . Config::interfacecss() . '">';
    }
    ?>
</head>



<?= $this->section('page') ?>


</html>