cross-reader/templates/mapping.html

23 lines
489 B
HTML
Raw Normal View History

2019-07-10 21:19:51 +02:00
{% extends "base.html" %}
{% block title %}{% endblock %}
{% block search %}
{% endblock %}
{% block results %}
<div id="mappings">
<br><br>
<h1>{{ manifesto | prettyfilename }}</h1>
{% for sentence in mappings %}
<p class="sentence">
{% for word, tfidf in sentence %}
2019-07-10 21:19:51 +02:00
<strong class="query" style="font-size:{{ 50 + tfidf }}%;"> <a href="/?q={{ word }}">{{ word }}</a> </strong>
{% endfor %}
</p>
{% endfor %}
</div>
{% endblock %}
{% block suggestions %}
{% endblock %}