PushingScores/templates/home.html

20 lines
492 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">
<h1>Welcome to the Pushing Scores archive</h1>
{% for word in wordlist_dict %}
{% set address = "/diverge?search=" + word %}
<a href={{address}}>
{{ word }}
</a>
{% endfor %}
</div>
{% endblock content %}
{% block index %}
{% for each in index_dict %}
{% set address = "/description?id=" + each %}
<a href={{address}}>{{index_dict[each]}}</a>
{% endfor %}
{% endblock index %}