PushingScores/templates/home.html
2019-05-27 20:17:45 +02:00

16 lines
357 B
HTML

{% extends "layout.html" %}
{% block content %}
<div class="explanation">
The selection of keywords next to this paragraph originates from all
</div>
<div class="home">
{% for word in wordlist_dict %}
{% set address = "/diverge?search=" + word %}
<a href={{address}}>{{ word }}</a>
{% endfor %}
</div>
{% endblock content %}