Skip to content
This repository was archived by the owner on Jan 1, 2020. It is now read-only.

Commit 25c6621

Browse files
committed
Merge pull request #339 from webimpress/improvements-and-fixes
Improvements and fixes
2 parents 442a39b + dbf6ff2 commit 25c6621

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

module/Application/view/layout/layout.phtml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<!-- Scripts -->
2121
<?= $this->headScript()
2222
->prependFile($this->basePath('js/bootstrap.min.js'))
23-
->prependFile($this->basePath('js/jquery-3.0.0.min.js'))
23+
->prependFile($this->basePath('js/jquery-2.2.4.min.js'))
2424
?>
2525
</head>
2626
<body>
@@ -32,13 +32,15 @@
3232
<span class="icon-bar"></span>
3333
<span class="icon-bar"></span>
3434
</button>
35-
<a class="navbar-brand" href="<?= $this->url('home') ?>"><img src="<?= $this->basePath('img/zf-logo.png') ?>" alt="Zend Framework <?= \Application\Module::VERSION ?>"/>&nbsp;Skeleton Application</a>
35+
<a class="navbar-brand" href="<?php echo $this->url('home') ?>">
36+
<img src="<?= $this->basePath('img/zf-logo.png') ?>" alt="Zend Framework <?= \Application\Module::VERSION ?>"/>&nbsp;Skeleton Application
37+
</a>
3638
</div>
3739
<div class="collapse navbar-collapse">
3840
<ul class="nav navbar-nav">
3941
<li class="active"><a href="<?= $this->url('home') ?>">Home</a></li>
4042
</ul>
41-
</div><!--/.nav-collapse -->
43+
</div>
4244
</div>
4345
</nav>
4446
<div class="container">
@@ -47,7 +49,7 @@
4749
<footer>
4850
<p>&copy; 2005 - <?= date('Y') ?> by Zend Technologies Ltd. All rights reserved.</p>
4951
</footer>
50-
</div> <!-- /container -->
52+
</div>
5153
<?= $this->inlineScript() ?>
5254
</body>
5355
</html>

0 commit comments

Comments
 (0)