1 |
www |
1 |
<?= $this->doctype() ?>
|
|
|
2 |
<html lang="en">
|
|
|
3 |
<head>
|
|
|
4 |
<meta charset="utf-8">
|
|
|
5 |
<?= $this->headTitle('Laminas MVC Skeleton')->setSeparator(' - ')->setAutoEscape(false) ?>
|
|
|
6 |
|
|
|
7 |
<?= $this->headMeta()
|
|
|
8 |
->appendName('viewport', 'width=device-width, initial-scale=1.0')
|
|
|
9 |
->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
|
|
|
10 |
?>
|
|
|
11 |
|
|
|
12 |
<!-- Le styles -->
|
|
|
13 |
<?= $this->headLink(['rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/images/favicon.ico'])
|
|
|
14 |
->prependStylesheet($this->basePath('css/style.css'))
|
|
|
15 |
->prependStylesheet($this->basePath('css/bootstrap.min.css'))
|
|
|
16 |
?>
|
|
|
17 |
|
|
|
18 |
<!-- Scripts -->
|
|
|
19 |
<?= $this->inlineScript()
|
|
|
20 |
->prependFile($this->basePath('js/bootstrap.min.js'))
|
|
|
21 |
->prependFile($this->basePath('js/jquery-3.4.1.min.js'))
|
|
|
22 |
?>
|
|
|
23 |
</head>
|
|
|
24 |
<body>
|
|
|
25 |
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark" role="navigation">
|
|
|
26 |
<div class="container">
|
|
|
27 |
<div class="navbar-header">
|
|
|
28 |
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
29 |
<span class="navbar-toggler-icon"></span>
|
|
|
30 |
</button>
|
|
|
31 |
<a class="navbar-brand" href="<?= $this->url('home') ?>">
|
|
|
32 |
<img src="<?= $this->basePath('img/laminas-logo.svg') ?>" height="28" alt="Laminas MVC Skeleton"/> Laminas MVC Skeleton
|
|
|
33 |
</a>
|
|
|
34 |
</div>
|
|
|
35 |
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
|
36 |
<ul class="navbar-nav mr-auto">
|
|
|
37 |
<li class="nav-item active">
|
|
|
38 |
<a class="nav-link" href="<?= $this->url('home') ?>">Home <span class="sr-only">(current)</span></a>
|
|
|
39 |
</li>
|
|
|
40 |
</ul>
|
|
|
41 |
</div>
|
|
|
42 |
</div>
|
|
|
43 |
</nav>
|
|
|
44 |
<div class="container">
|
|
|
45 |
<?= $this->content ?>
|
|
|
46 |
<hr>
|
|
|
47 |
<footer>
|
|
|
48 |
<p>© <?= date('Y') ?> by Laminas Project. All rights reserved.</p>
|
|
|
49 |
</footer>
|
|
|
50 |
</div>
|
|
|
51 |
<?= $this->inlineScript() ?>
|
|
|
52 |
</body>
|
|
|
53 |
</html>
|