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.
20 lines
494 B
20 lines
494 B
{% extends "base.html" %}
|
|
{% block title %}{% endblock %}
|
|
|
|
{% block txtlist %}
|
|
{% endblock %}
|
|
|
|
{% block results %}
|
|
<h1>lists</h1>
|
|
<div id="results" class="ordered">
|
|
{% for manifesto, words in results.items()|sort %}
|
|
<span class="manifesto">
|
|
<h2 class="black">{{manifesto}}</h2>
|
|
{% for value, word in words %}
|
|
<strong style="font-size:{{value * 50000}}%;"><a href="{{ url_for('index')}}?q={{word}}">{{word}}</a></strong>
|
|
{% endfor %}
|
|
</span>
|
|
{% endfor %}
|
|
<hr>
|
|
</div>
|
|
{% endblock %}
|