diff options
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 07a8f32..694d8a0 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -19,11 +19,11 @@ <body> <nav> <div class="mm">Mateja Maric</div> - <a href="/" class="active">Home</a> - <a href="/blog/">Blog</a> + <a class="{{ if eq .URL `/`}}active{{ end }}" href="/">Home</a> + <a class="{{ if eq .URL `/blog/`}}active{{ end }}" href="/blog/">Blog</a> <a href="https://github.com/MatejaMaric">GitHub</a> <a href="https://git.matejamaric.com">Git server</a> - <a href="/contact/">Contact</a> + <a class="{{ if eq .URL `/contact/`}}active{{ end }}" href="/contact/">Contact</a> </nav> <main> {{ block "main" . }}{{ end }} |