Initial import for public release...
[archweb_dev-nj.git] / templates / wiki / home.html
blob6c0fb6efb4f6abce4d0247a9775913a25cd040ef
1 {% extends "base.html" %}
2 {% block content %}
3 <div class="box">
4 <h2 class="title">Wiki Index</h2>
5 {% for page in pages %}
6 <h3><a href='{{ page.title }}/'>{{ page.title }}</a></h3>
7 {% endfor %}
8 </div>
9 {% endblock %}