diff options
author | Nicolas Kuttler <git@kuttler.eu> | 2015-02-13 07:57:16 +0100 |
---|---|---|
committer | Nicolas Kuttler <git@kuttler.eu> | 2015-02-13 07:57:16 +0100 |
commit | 835b254d50d7e598f39c11e67c9b661f7b8ab56d (patch) | |
tree | 4637026a65534e3fe1bf70cd6d3ccce5ea9ce26d | |
parent | 0e68e60cb0e64fe530769e7de58e068779e68b3a (diff) | |
download | irssi.github.io-835b254d50d7e598f39c11e67c9b661f7b8ab56d.zip |
Fix links for empty baseurl setting
-rw-r--r-- | _includes/header.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/header.html b/_includes/header.html index 61ed5e2..dfe0a4d 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -7,14 +7,14 @@ <span class="icon-bar"></span> <span class="icon-bar"></span> </button> - <a class="navbar-brand" href="{{ site.baseurl }}"> + <a class="navbar-brand" href="{{ site.baseurl }}/"> <img alt="Irssi Logo" class="navbar-irssi-logo" src="{{ site.baseurl }}/assets/logo.png"> {% comment %}{{ site.title }}{% endcomment %} </a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> - <li{% if page.url == "/index.html" %} class="active"{% endif %}><a href="{{ site.baseurl }}">News</a></li> + <li{% if page.url == "/index.html" %} class="active"{% endif %}><a href="{{ site.baseurl }}/">News</a></li> {% comment %} Exclude the news feed and the paginated news pages. {% endcomment %} |