PushingScores/templates/home.html

13 lines
295 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 %}
<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 %}
<a href={{address}}>
2019-05-27 17:32:05 +02:00
{{ word }} <a style="color:red;"></a>
2019-05-20 15:56:54 +02:00
</a>
{% endfor %}
</div>
{% endblock content %}