view _includes/header.html @ 69:ee20b2a64fe5 kai

maint: some code refactoring.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Thu, 13 Oct 2016 17:43:50 +0200
parents a7952259f5d3
children 5caa2af27956
line wrap: on
line source

<div id="logo">
  <p>
    <img src="{{ "/img/logo.png" | relative_url }}" alt="GNU Octave Logo">
    <span>GNU Octave</span>
  </p>
</div>


<ul class="topnav" id="myTopnav">
  <li><a href="{{ "/index.html" | relative_url }}">Home</a></li>
  {% for p in site.pages %}
    {% if p.menu %}
    <li>
      <a href="{{ p.url | relative_url }}"
        {% if page.url == p.url %} class="active"{% endif %}>
      {{ p.title }}</a>
    </li>
    {% endif %}
  {% endfor %}
  <li><a href="{{site.docs_url}}">Docs</a></li>
  <li class="icon">
    <a href="javascript:void(0);" onclick="topnav()">
      {% octicon list-unordered class:"octicon-topnav" %}
    </a>
  </li>
</ul>