website/templates/bottom_menu.html
vachan-maker 3d33a840b2 Add proper FAQ page and TTS instructions
Signed-off-by: meenbeese <meenbeese@tutanota.com>
Signed-off-by: S. Kozyr <s.trump@gmail.com>
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-03-07 00:45:07 +02:00

26 lines
No EOL
1,021 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 %}
&nbsp;
{% endif %}
{% endfor %}
<a href="https://omaps.app/api" title="How to open Organic Maps from other apps and pass the data back">API</a>
&nbsp;
<a href="mailto:hello@organicmaps.app">{{ trans(key='contact', lang=lang) }}</a>
</nav>