mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
Rather nice and satisfactory. Slightly conflates the issue of configuration and internationalisation at present, but I think internationalisation is a target to hit as a separate job.
13 lines
400 B
HTML
13 lines
400 B
HTML
{% extends "templates/base.html" %}
|
|
|
|
{% block content %}
|
|
<div id="content" class="wiki">
|
|
{% if editable %}
|
|
<ul class="minor-controls">
|
|
<li><a href="{{servlet-context}}/edit?page={{title}}">{{config.edit-page-link}}</a></li>
|
|
<li><a href="history?page={{page}}">{{config.history-link}}</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
{{content|safe}}
|
|
</div>
|
|
{% endblock %}
|