mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-03-28 07:34:20 +00:00
9 lines
241 B
HTML
9 lines
241 B
HTML
|
|
<!--
|
|
This iterates through navbar pages in current language
|
|
and gets url and name for navbar.
|
|
-->
|
|
{% for menu in site.data.i18n.pages.nav[page.language] %}
|
|
<li><a href="{{ menu[1].url}}">{{menu[1].name }}</a> </li>
|
|
{% endfor %}
|