Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/hatta/templates/page.html
blob: 9b42ba97b433e54345a32f4d4846ebf2861a89c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 %}