summaryrefslogtreecommitdiffstats
path: root/howtos.html
blob: d3238d8360395376b78c2c51d6c05c5d373d23a6 (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">
  <h1>HowTos</h1>

  <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 %}