theshell.ch/site/_includes/header.html
maggicl f38b5fc0e6 Inital commit: added initial jekyll install
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@1 a672b425-5310-4d7a-af5c-997e18724b81
2018-10-30 17:09:13 +00:00

18 lines
599 B
HTML

<nav class="navbar">
<div class="container">
<ul class="navbar-list">
<li class="navbar-item">
<a href="{{ "/" | prepend: site.baseurl | prepend: site.url }}">home</a>
</li>
{% for my_page in site.pages %}
{% if my_page.title %}
<li class="navbar-item">
<a href="{{ my_page.url | prepend: site.baseurl | prepend: site.url }}">
{{ my_page.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</nav>