mirror of
https://github.com/brmlab/brmbar.git
synced 2025-06-08 13:24:01 +02:00
13 lines
285 B
HTML
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 %}
|