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

{% block content %}

<h2>HowTos</h2>

<ul>
{% for page in site.pages %}
  {% if page.howto %}
    <li><a href="{{ page.get_url() }}">{{ page.title }}</a></li>
  {% endif %}
{% endfor %}
</ul>

{% endblock %}