Cristina Cochior
6 years ago
6 changed files with 42 additions and 14 deletions
Binary file not shown.
Binary file not shown.
@ -1,7 +1,19 @@ |
|||
{% extends "layout.html" %} |
|||
{% block content %} |
|||
<div class="home"> |
|||
<h1>Start</h1> |
|||
<p>This will be the page with all the keywords.</p> |
|||
</div> |
|||
{% endblock %} |
|||
{% 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 %} |
|||
|
Loading…
Reference in new issue