You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
488 B
17 lines
488 B
6 years ago
|
{% 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 %}
|