PushingScores/templates/home.html
2019-12-03 11:55:52 +01:00

21 lines
408 B
HTML

{% extends "layout.html" %}
{% block content %}
<div class="homecontent">
<div class="explanation">
These keywords originate from all the written content embedded within the archive.
</div>
<div class="home">
{% for word in wordlist_dict %}
{% set address = "/diverge?search=" + word %}
<a href={{address}}>{{ word }}</a>
{% endfor %}
</div>
</div>
{% endblock content %}