view _includes/header.html @ 47:6b221a8157ab kai

Fixed RSS link, Home button.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Wed, 28 Sep 2016 11:28:28 +0200
parents 171ca967fcc9
children 002d154531d4
line wrap: on
line source

<div id="logo">
  <p>
    <img src="{{ "/img/logo.png" | prepend: site.baseurl }}" alt="GNU Octave Logo">
    <span>{{ site.title }}</span>
  </p>
</div>


<ul class="topnav" id="myTopnav">
  <li><a href="{{ "/index.html" | prepend: site.baseurl }}">Home</a></li>
  {% for page in site.pages %}
    {% if page.menu %}
  <li><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>
    {% endif %}
  {% endfor %}
  <li class="icon">
    <a href="javascript:void(0);" onclick="myFunction()">
      {% octicon list-unordered height:18 class:"right left" %}
    </a>
  </li>
</ul>