mirror of
https://github.com/facundoolano/jorge.git
synced 2024-11-16 07:47:40 +01:00
7094998638
* add src_path to template metadata * tweak init files * add docs site with initial layout * add some tweaks to make default layouts more consistent * index tweaks * more layout * stub tutorial entries * add output in docs index * fix footer padding * change listening for serving * simplify submenu * remove inline styles
11 lines
296 B
HTML
11 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>
|