aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/wikipedia_view_fuzzy_refs.html
blob: 2d2627b1ba6b1ba95883a086f212474bd07383d7 (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>References from wikipedia article to other entities.</i>
{% endif %}

{{ refs_macros.refs_table(hits, direction) }}

{% endblock %}