28 lines
651 B
HTML
28 lines
651 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
|
||
|
|
{% block title %}Pages linking to “{{ p.title }}” - {{ app_name }}{% endblock %}
|
||
|
|
|
||
|
|
{% block meta %}
|
||
|
|
<meta name="robots" content="noindex,nofollow" />
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<h1 id="firstHeading">{{ p.title }}</h1>
|
||
|
|
<div class="preview-subtitle">Backlinks</div>
|
||
|
|
|
||
|
|
{% if backlinks %}
|
||
|
|
<ul>
|
||
|
|
{% for op in backlinks %}
|
||
|
|
<li><a href="{{ op.get_url() }}">
|
||
|
|
{{ op.title }} (<strong>#{{ op.id }}</strong>)
|
||
|
|
</a></li>
|
||
|
|
{% endfor %}
|
||
|
|
</ul>
|
||
|
|
{% else %}
|
||
|
|
<p class="placeholder">No other pages linking here. Is this page orphan?</p>
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
<p>Back to <a href="{{ p.get_url() }}">{{ p.title }}</a>.</p>
|
||
|
|
{% endblock %}
|
||
|
|
|