mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
11 lines
333 B
HTML
11 lines
333 B
HTML
{% extends "templates/base.html" %}
|
|
|
|
{% block content %}
|
|
<div id="content" class="wiki">
|
|
<ul class="minor-controls">
|
|
<li><a href="{{servlet-context}}/edit?page={{title}}">Edit this page</a></li>
|
|
<li><a href="history?page={{page}}">History</a></li>
|
|
</ul>
|
|
{{content|safe}}
|
|
</div>
|
|
{% endblock %}
|