Merge pull request #88 from Soullivaneuh/master

Remove / on the homepage brand link, solves #86. Fixes the site title link on homepage.
This commit is contained in:
Denis Kisselev 2013-10-03 12:27:25 -07:00
bovenliggende 3cb24635a0 876fb3594c
commit d421154b33
1 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen

Bestand weergeven

@ -138,7 +138,7 @@ if ($homepage && $homepage_url !== '/') {
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand pull-left" href="<?php echo $base_url ?>/<?php echo $homepage_url;?>"><?php echo $options['title']; ?></a>
<a class="brand pull-left" href="<?php echo $base_url ?><?php echo $homepage_url;?>"><?php echo $options['title']; ?></a>
<p class="navbar-text pull-right">
Generated by <a href="http://daux.io">Daux.io</a>
</p>
@ -185,7 +185,7 @@ if ($homepage && $homepage_url !== '/') {
<div class="homepage-content container-fluid">
<div class="container">
<div class="row">
<div class="span10 offset1">
<div class="span10 offset1">
<?php echo $page['html'];?>
</div>
</div>
@ -282,7 +282,7 @@ if ($homepage && $homepage_url !== '/') {
<div class="page-header">
<h1><?php echo $page['title'];?></h1>
</div>
<?php } ?>
<?php echo $page['html'];?>
</article>