summaryrefslogtreecommitdiffstats
path: root/blog/_includes/menubar.html
blob: d81b8961346d52ba136bcd66b74029e916c910f8 (plain) (blame)
1
2
3
4
5
6
7
8
<nav class="site-nav">
  <a class="page-link" href="{{ site.baseurl }}">{% t titles.home %}</a>
  {% for page in site.pages %}
    {% if page.title %}
      <a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{% page_title page.title %}</a>
    {% endif %}
  {% endfor %}
</nav>