summaryrefslogtreecommitdiffstats
path: root/howtos.html
blob: 1948b55dc4f010f9513e6185d50fa5a208b47bef (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 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 %}