summaryrefslogtreecommitdiff
path: root/src/view/templates/header.php
blob: a749f45bc67dc766d851ac9388758e7e1ab2d790 (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
<?php declare(strict_types=1); ?>
<body>
    <div>
	   <header>
            <div id="nav_zone">
                <?= $nav ?>
            </div>

            <div class="header-content">
                <div class="head_logo">
                    <a href="<?= new URL ?>"><img src="<?= $logo ?>" alt="logo_alt"></a>
                </div>
                <div class="site_title">
                    <a href="<?= new URL ?>"><h1><?= $title ?></h1></a>
                    <h2><?= $description ?></h2>
                </div>
                <div>
                    <div class="social">
                        <?= $social_networks ?>
                    </div>
                    <?= $breadcrumb ?>
                </div>
            </div>
        </header>