diff options
| author | Yuval Adam <_@yuv.al> | 2017-08-07 09:17:36 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2017-08-07 09:17:36 +0300 |
| commit | dd0cce923a29aee84f7050b7e0c886c8d32a84a7 (patch) | |
| tree | 620c8c963ecfdbce277aa79388d5fd42fca6e518 /templates/wiki.html | |
| parent | 14958653b9bf92f56316511e8080baeeaf409b97 (diff) | |
Add wiki content
Diffstat (limited to 'templates/wiki.html')
| -rw-r--r-- | templates/wiki.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/wiki.html b/templates/wiki.html index e69de29..66d870b 100644 --- a/templates/wiki.html +++ b/templates/wiki.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} + +{% block body %} +<ul> +{% for page in pages %} + <li><a href="{{ page.url }}">{{ page.title }}</a></li> +{% endfor %} +</ul> +{% endblock %} |
