summaryrefslogtreecommitdiffstats
path: root/blog/_includes/menubar.html
blob: 36f69e9147387812c8114002820dc25ea6dbda10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<nav class="site-nav">
  <a class="page-link" href="{{ site.baseurl | append: "/" }}">{% t titles.home %}</a>
  {% if false %}
    <a class="page-link" href="{{ site.baseurl_root | append: "registration" }}">{% t titles.registration %}</a>
  {% endif %}
  {% 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 %}
  {% include language-switcher.html %}
</nav>