added aside.html
This commit is contained in:
parent
9f3b87c1ed
commit
9dccb451f6
|
@ -2,16 +2,19 @@
|
||||||
|
|
||||||
{% use "core.html" with css as core_css, body as core, js as core_js %}
|
{% use "core.html" with css as core_css, body as core, js as core_js %}
|
||||||
{% use "header.html" with css as header_css, body as header, js as header_js %}
|
{% use "header.html" with css as header_css, body as header, js as header_js %}
|
||||||
|
{% use "aside.html" with css as aside_css, body as aside, js as aside_js %}
|
||||||
{% use "footer.html" with css as footer_css, body as footer, js as footer_js %}
|
{% use "footer.html" with css as footer_css, body as footer, js as footer_js %}
|
||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
{{ block('core_css') }}
|
{{ block('core_css') }}
|
||||||
{{ block('header_css') }}
|
{{ block('header_css') }}
|
||||||
|
{{ block('aside_css') }}
|
||||||
{{ block('footer_css') }}
|
{{ block('footer_css') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{{ block('header') }}
|
{{ block('header') }}
|
||||||
|
{{ block('aside') }}
|
||||||
<main>
|
<main>
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{{ main|raw }}
|
{{ main|raw }}
|
||||||
|
@ -23,5 +26,6 @@
|
||||||
{% block js %}
|
{% block js %}
|
||||||
{{ block('footer_js') }}
|
{{ block('footer_js') }}
|
||||||
{{ block('header_js') }}
|
{{ block('header_js') }}
|
||||||
|
{{ block('aside_js') }}
|
||||||
{{ block('core_js') }}
|
{{ block('core_js') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue