mirror of
https://github.com/GamingShitposting/SalaMuseoGames
synced 2025-02-23 07:07:46 +01:00
10 lines
247 B
HTML
10 lines
247 B
HTML
<ul>
|
|
{% for item in site.menu %}
|
|
{% if item.title and item.url %}
|
|
<li>
|
|
<a href="{% if item.type != 'external' %}{{ site.baseurl }}{% endif %}{{ item.url }}">{{ item.title }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|