Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/hatta/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'websdk/hatta/templates/page.html')
-rw-r--r--websdk/hatta/templates/page.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/websdk/hatta/templates/page.html b/websdk/hatta/templates/page.html
new file mode 100644
index 0000000..9b42ba9
--- /dev/null
+++ b/websdk/hatta/templates/page.html
@@ -0,0 +1,15 @@
+{% extends 'base.html' %}
+
+{% block page_title %}<h1>{{ title }}</h1>{% endblock %}
+{% block title %}{{ title }} - {{ wiki.site_name }}{% endblock %}
+
+{% block footer %}
+ {% if edit_url %}
+ <a href="{{ edit_url }}"
+ class="edit">{{ _('Edit') }}</a>
+ {% endif %}
+ <a href="{{ url(title, wiki.history) }}"
+ class="hatta-history">{{ _('History') }}</a>
+ <a href="{{ url(title, wiki.backlinks) }}"
+ class="hatta-backlinks">{{ _('Backlinks') }}</a>
+{% endblock %}