blob: 3e1453c1beca93a63a6769bd1f78669b55e45b86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends "base.html" %}
{% import "refs_macros.html" as refs_macros %}
{% block title %}Wikipedia Refs{% endblock %}
{% block fullbody %}
<h1 class="ui header">
[{{ wiki_lang }}] {{ wiki_article }}
<span class="sub header"><a href="{{ wiki_url }}"><code>{{ wiki_url }}</code></a></span>
</h1>
{% if direction == "in" %}
<h3>Cited By</h3>
<p>This page lists references to a wikipedia article, from other works (eg, journal articles).
{% elif direction == "out" %}
<h3>References</h3>
<i>Refernces from wikipedia article to other entities.</i>
{% endif %}
{{ refs_macros.refs_table(hits, direction) }}
{% endblock %}
|