Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/hatta/templates/backlinks.html
blob: d6fc56ce175414dd6f5ca65261aa30b1eafec0fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends 'page.html' %} 

{% block meta %}<meta name="robots" content="NOINDEX, NOFOLLOW">{% endblock %}

{% block page_title %}
    <h1>{{ _("Links to %(title)s", title=title) }}</h1>
{% endblock %}
{% block title %}{{ _("Links to %(title)s", title=title) }} - {{ wiki.site_name }}{% endblock %}

{% block content %}
    <p>{{ _("Pages that contain a link to %(link)s.",
            link=page.wiki_link(title)|safe)}}</p>
    <ul class="backlinks">
    {% for page_title in pages %}
        <li>{{ page.wiki_link(page_title)|safe }}</li>
    {% endfor %}
    </ul>
{% endblock %}