organicmaps-website/templates/common/footer.html
2024-02-09 20:39:49 +02:00

44 lines
No EOL
1.8 KiB
HTML

{% set home = get_section(path='_index.md') %}
{% set news = get_section(path='news/_index.md') %}
{% set langPathPrefix = '' %}
{% if lang != config.default_language %}
{% set langPathPrefix = '/' ~ lang %}
{% endif %}
<div class="container footer__container">
<div class="footer__rw">
<a class="footer__logo logo" href="{{ langPathPrefix | safe }}/">{% include 'ui/logo.html' %}</a>
<div class="footer__text">
<p class="p-md footer__description">© 2023 Organic Maps</p>
</div>
</div>
<div class="footer__item">
<div class="footer__nav">
<nav class="footer__nav-item" id="bottom-menu" role="navigation">
<a class="p-sm footer__link" href="/"><span class="p-sm footer__link">Home</span></a>
<a class="p-sm footer__link" href="/community/"><span class="p-sm footer__link">Community</span></a>
<a class="p-sm footer__link" href="/volunteering/"><span class="p-sm footer__link">Volunteering</span></a>
<a class="p-sm footer__link" href="/news/"><span class="p-sm footer__link">News</span></a>
<a class="p-sm footer__link" href="/download/"><span class="p-sm footer__link">Download</span></a>
<a class="p-sm footer__link" href="/support-us/"><span class="p-sm footer__link">Help</span></a>
<a class="p-sm footer__link" href="/faq/"><span class="p-sm footer__link">FAQ</span></a>
<a class="p-sm footer__link" href="/api/"><span class="p-sm footer__link">API</span></a>
<a class="p-sm footer__link" href="/about-us/"><span class="p-sm footer__link">About</span></a>
</nav>
<div class="switch-theme">
<div class="switch-theme__toggle"></div>
</div>
<div class="footer__lang">
{% include 'components/language_selector.html' %}
</div>
</div>
</div>
</div>