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.
22 lines
489 B
22 lines
489 B
{% 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 %}
|
|
<strong class="query" style="font-size:{{ 50 + tfidf }}%;"> <a href="/?q={{ word }}">{{ word }}</a> </strong>
|
|
{% endfor %}
|
|
</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block suggestions %}
|
|
{% endblock %}
|
|
|