PushingScores/templates/home.html

18 lines
297 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
<div class="homepage content-block">
2020-01-10 19:19:56 +01: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 %}
2020-01-10 19:19:56 +01:00
<a href={{address}}>{{ word }}</a>
2019-05-20 15:56:54 +02:00
{% endfor %}
</div>
2019-05-29 11:54:46 +02:00
2019-05-28 15:45:45 +02:00
</div>
2019-05-20 15:56:54 +02:00
{% endblock content %}