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

{% block content %}
<div>
  <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 %}