jorge/commands/initfiles/includes/nav.html
Facundo Olano 7094998638
Outline docs site (#11)
* 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
2024-02-21 18:41:03 -03:00

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>