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" %} |
{% extends "layout.html" %} |
||||
{% block content %} |
{% block content %} |
||||
<div class="home"> |
<div class="home"> |
||||
<h1>Start</h1> |
<h1>Welcome to the Pushing Scores archive</h1> |
||||
<p>This will be the page with all the keywords.</p> |
{% for word in wordlist_dict %} |
||||
|
{% set address = "/diverge?search=" + word %} |
||||
|
<a href={{address}}> |
||||
|
{{ word }} |
||||
|
</a> |
||||
|
{% endfor %} |
||||
</div> |
</div> |
||||
{% endblock %} |
{% 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