9 lines
236 B
HTML
9 lines
236 B
HTML
3 years ago
|
{% extends "project.html" %}
|
||
|
|
||
|
{% block cover%}
|
||
|
<figure class='cards'>
|
||
|
{% for card in cards %}
|
||
|
<img src="{{url_for('static', filename='img/' + card)}}"/>
|
||
|
{%endfor%}
|
||
|
</figure>
|
||
|
{% endblock %}
|