frontend/templates
frontend/templates/navbar.html
<nav>
<div class="root">
<a href={{ config.base_url }}>~{{ config.title }}</a>
</div>
<div class="routes">
{% for menu in config.extra.menu %}
<a href={{ get_url(path=menu.url) }}>{{ menu.name }}</a>
{% endfor %}
</div>
</nav>