mirror of
https://github.com/facundoolano/jorge.git
synced 2024-12-27 21:58:50 +01:00
12 lines
296 B
HTML
12 lines
296 B
HTML
|
<nav>
|
||
|
<a href="/">{{ site.config.name }}</a>
|
||
|
<a href="/blog/">blog</a>
|
||
|
|
||
|
<div class="nav-right hidden-mobile">
|
||
|
{% assign sections = page.submenu %}
|
||
|
{% for section in sections %}
|
||
|
<a href="{{section[1]}}">{{section[0]}}</a>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</nav>
|