7 lines
131 B
HTML
7 lines
131 B
HTML
|
<html>
|
||
|
{% for item in seq %}
|
||
|
{% include 'header.html' %}
|
||
|
{% include 'body.html' %}
|
||
|
{% include 'footer.html' %}
|
||
|
{% endfor %}
|
||
|
</html>
|