Compare commits

..

No commits in common. "4ed10e5bc0febfb06220104d83a53bd3efc957b4" and "eb0f09393cdde44aa3cb35c7d2c2ab85a5234a30" have entirely different histories.

3 changed files with 2 additions and 11 deletions

View File

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

View File

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

View File

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