evorepo/templates/wiki/home.html

10 lines
217 B
HTML
Raw Normal View History

{% 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 %}