evorepo/templates/wiki/home.html
eliott 39a548fd26 Initial import for public release...
Special Note
  Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd!
2007-11-03 03:45:10 -04:00

10 lines
217 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="box">
<h2 class="title">Wiki Index</h2>
{% for page in pages %}
<h3><a href='{{ page.title }}/'>{{ page.title }}</a></h3>
{% endfor %}
</div>
{% endblock %}