Remove / on the homepage brand link

This commit is contained in:
Sullivan SENECHAL 2013-10-02 14:16:43 +02:00
parent 3cb24635a0
commit 876fb3594c
1 changed files with 3 additions and 3 deletions

View File

@ -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>