forked from brmlab/brmbar-github
		
	
		
			
				
	
	
		
			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 %}
 | 
