PushingScores/templates/home.html

18 lines
373 B
HTML
Raw Normal View History

2019-04-04 12:48:53 +02:00
{% extends "layout.html" %}
2019-05-20 15:56:54 +02:00
{% block content %}
2019-05-27 20:17:45 +02:00
2019-05-28 15:45:45 +02:00
2019-05-20 15:56:54 +02:00
<div class="home">
2019-05-27 12:05:42 +02:00
2019-05-20 15:56:54 +02:00
{% for word in wordlist_dict %}
{% set address = "/diverge?search=" + word %}
2019-05-27 20:17:45 +02:00
<a href={{address}}>{{ word }}</a>
2019-05-20 15:56:54 +02:00
{% endfor %}
</div>
2019-05-28 15:45:45 +02:00
<div class="explanation">
These keywords originate from all the written content embedded within the archive.
</div>
2019-05-20 15:56:54 +02:00
{% endblock content %}