16 lines
224 B
HTML
16 lines
224 B
HTML
{% extends "creative/layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<!-- Navigation -->
|
|
{% include 'creative/_nav.html' %}
|
|
|
|
{% for bloc in myblocs.values() %}
|
|
|
|
{% include 'creative/_'+bloc.type+'.html' %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
{% endblock %}
|