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.
27 lines
679 B
27 lines
679 B
{% extends "fr/base.html" %}
|
|
{% block title %}{% endblock %}
|
|
|
|
{% block txtlist %}
|
|
{% endblock %}
|
|
|
|
{% block results %}
|
|
<h1>lists</h1>
|
|
<div id="listing_per_manifesto" class="listings">
|
|
{% for manifesto, words in results.items()|sort %}
|
|
<span class="result">
|
|
<div class="ascii">
|
|
/\|\/\<br>
|
|
_) (__<br>
|
|
\_ _/ <br>
|
|
) \ <br>
|
|
\/\|\/
|
|
</div>
|
|
<h2>{{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 %}
|