23 lines
No EOL
897 B
HTML
23 lines
No EOL
897 B
HTML
{% set home = get_section(path='_index.md') %}
|
|
{% set news = get_section(path='news/_index.md') %}
|
|
|
|
<nav id="bottom-menu" role="navigation">
|
|
{% for page in [home, news] | concat(with=home.pages) %}
|
|
{% set translated = page.translations | filter(attribute='lang', value=lang) | first %}
|
|
{% if translated %}
|
|
{% if "_index" in translated.path %}
|
|
{% set page = get_section(path=translated.path) %}
|
|
{% else %}
|
|
{% set page = get_page(path=translated.path) %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if page.extra.menu_title %}
|
|
{% if resource_path != page.path %}<a href="{{ page.permalink | replace(from=config.base_url, to="") | safe }}">{% endif %}
|
|
<span>{{ page.extra.menu_title }}</span>
|
|
{%- if resource_path != page.path %}</a>{% endif %}
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
<a href="mailto:hello@organicmaps.app">{{ trans(key='contact', lang=lang) }}</a>
|
|
</nav> |