summaryrefslogtreecommitdiffstats
path: root/howtos.html
blob: 8adfbddd17d7515a30f4da9cae5999eeff9ee53b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% meta %}
  title: HowTos
  top_link: 3
{% endmeta %}

{% block content %}
<div id="howtos-index">
  <h2>HowTos</h2>

  <ul>
    {% for page in site.pages|filter_by_path('howtos/')|sort(attribute='title')%}
      <li><a href="{{ page.get_url() }}">{{ page.title }}</a></li>
    {% endfor %}
  </ul>
</div>
{% endblock %}