2
0

Base for URLs.

This commit is contained in:
Maarten Billemont
2018-04-20 09:31:31 -04:00
parent d0cd8ae288
commit 475cb61d52
7 changed files with 37 additions and 38 deletions

View File

@@ -1,6 +1,6 @@
<header class="{{ page.header }}">
<nav>
<a href="/" data-hero="main">Master Password</a>
<a href="{{ site.baseurl }}" data-hero="main">Master Password</a>
<div class="flex-auto">
<a href="https://itunes.apple.com/app/id510296984" data-hero="ios">iOS.</a>
<a href="https://ssl.masterpasswordapp.com/masterpassword-android.apk" data-hero="android">Android.</a>
@@ -17,8 +17,8 @@
<div class="flex-auto"></div>
<nav>
<a href="why.html"{% if page.nav == "why" %} class="active"{% endif %}>Why</a>
<a href="what.html"{% if page.nav == "what" %} class="active"{% endif %}>What</a>
<a href="how.html"{% if page.nav == "how" %} class="active"{% endif %}>How</a>
<a href="{{ site.baseurl }}/why.html"{% if page.nav == "why" %} class="active"{% endif %}>Why</a>
<a href="{{ site.baseurl }}/what.html"{% if page.nav == "what" %} class="active"{% endif %}>What</a>
<a href="{{ site.baseurl }}/how.html"{% if page.nav == "how" %} class="active"{% endif %}>How</a>
</nav>
</header>