brmbar/server/templates/index.html
2011-06-19 02:22:08 +02:00

13 lines
285 B
HTML

{% extends "base.html" %}
{% block title %}Welcome{% endblock %}
{% block content %}
{% for item in items %}
<div class="block">
<img src="/static/items/{{ item.code|safe }}.jpg"><br/>
{{ item.name|safe }}<br/>
<strong>{{ item.price }} Kc</strong>
</div>
{% endfor %}
{% endblock %}