fix: added query to check if alt pages really exist

This commit is contained in:
Stephan 2021-07-19 22:13:40 +02:00
parent 3038f516c3
commit ebad7d502c
1 changed files with 7 additions and 7 deletions

View File

@ -11,7 +11,7 @@
<nav class="header__secondary_nav">
<ul class="secondary_nav__navlist">
{% for alt in get_alts(this) %}
{%- if this.alt != alt %}
{%- if this.alt != alt and not (this.record.path == '/blog' or this.record.path == '/podcast') %}
<li class="secondary_nav__navitem">
<a class="secondary_nav__navlink" href="{{ '.'|url(alt=alt) }}">{{ alt|title|upper }}</a>
</li>