20 lines
494 B
HTML
20 lines
494 B
HTML
{% 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 %} |