PushingScores/templates/home.html
2019-05-27 16:32:05 +01:00

13 lines
295 B
HTML

{% extends "layout.html" %}
{% block content %}
<div class="home">
{% for word in wordlist_dict %}
{% set address = "/diverge?search=" + word %}
<a href={{address}}>
{{ word }} <a style="color:red;"></a>
</a>
{% endfor %}
</div>
{% endblock content %}