Compare commits

...

2 Commits

Author SHA1 Message Date
4ed10e5bc0 Show currently selected nav item
All checks were successful
continuous-integration/drone/push Build is passing
2023-04-03 19:49:53 +02:00
72fbf5d212 Oprava překlepu 2023-04-03 19:27:28 +02:00
3 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,5 @@
+++
title = "Pečěné kuře v sýrové omáčce s houbami"
title = "Pečené kuře v sýrové omáčce s houbami"
date = 2023-04-02
author = "Terezka"

View File

@ -61,6 +61,11 @@ nav {
display:flex;
justify-content:center;
background:$nav-background-secondary;
a.active {
color: $nav-anchor-hover-color;
background-color: $nav-background-primary;
}
}
}

View File

@ -42,7 +42,11 @@
{% macro subnav() %}
<ul>
{% for item in config.extra.menu %}
<li><a href="{{ item.path }}">{{ item.name }}</a></li>
<li><a href="{{ item.path }}"
{% if item.path == current_path %}
class="active"
{% endif %}
>{{ item.name }}</a></li>
{% endfor %}
</ul>
{% endmacro subnav %}