equal
deleted
inserted
replaced
1 {% extends "qmsk.pngtile/view.html" %} |
1 {% extends "qmsk.pngtile/view.html" %} |
|
2 {% load staticfiles %} |
|
3 |
|
4 {% block head %} |
|
5 <link rel="stylesheet" href="{% static "qmsk.pngtile/map.css" %}"> |
|
6 {% endblock %} |
|
7 |
2 |
8 |
3 {% block content %} |
9 {% block content %} |
4 {% for item, item_name in index_items %} |
10 {% for item_title, item_name, item_img in index_items %} |
5 <div> |
11 <div class="image"> |
6 <a href="{% url 'image' item_name %}">{{item}}</a> |
12 <a href="{% url 'image' item_name %}"> |
|
13 <img src="{{ item_img }}" /> |
|
14 <div class="title">{{item_title}}</div> |
|
15 </a> |
7 </div> |
16 </div> |
8 {% endfor %} |
17 {% endfor %} |
9 {% endblock %} |
18 {% endblock %} |
10 |
19 |