aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/wikipedia_view_fuzzy_refs.html
blob: 5b53d692a577461775c832f666527d9b686c969a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% 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 %}

{% if hits.result_refs %}
  {{ refs_macros.refs_table(hits, direction) }}
{% else %}
  <br><br><p><b>None found</b>
{% endif %}

{% endblock %}