cross-reader/templates/en/mappings.html

17 lines
488 B
HTML
Raw Normal View History

{% extends "en/base.html" %}
{% block title %}{% endblock %}
{% block txtlist %}
{% endblock %}
{% block results %}
<h1>Contrast mappings, cross-reading with algorithmic results.</h1>
<div id="mappings">
{% for manifesto, items in mappings.items() %}
<h1>{{ manifesto }}</h1>
{% for tfidf, word in items %}
<strong class="query" style="font-size:{{ 50 + tfidf }}%;"> <a href="/{{ lang }}/?q={{ word }}">{{ word }}</a> </strong>
{% endfor %}
{% endfor %}
</div>
{% endblock %}