pot/author/project/system/views/themes/default/index.html

29 lines
704 B
HTML
Raw Normal View History

2024-12-16 23:21:10 +07:00
{% extends "/themes/default/core.html" %}
2024-01-11 04:35:40 +07:00
2024-12-16 23:18:03 +07:00
{% use "/themes/default/header.html" with css as header_css, body as header, js as header_js %}
{% use "/themes/default/aside.html" with css as aside_css, body as aside, js as aside_js %}
{% use "/themes/default/footer.html" with css as footer_css, body as footer, js as footer_js %}
2024-01-11 04:35:40 +07:00
{% block css %}
{{ block('header_css') }}
2024-12-16 18:13:59 +07:00
{{ block('aside_css') }}
2024-01-11 04:35:40 +07:00
{{ block('footer_css') }}
{% endblock %}
{% block body %}
{{ block('header') }}
2024-12-16 18:13:59 +07:00
{{ block('aside') }}
2024-01-11 04:35:40 +07:00
<main>
{% block main %}
{{ main|raw }}
{% endblock %}
</main>
{{ block('footer') }}
{% endblock %}
{% block js %}
{{ block('footer_js') }}
{{ block('header_js') }}
2024-12-16 18:13:59 +07:00
{{ block('aside_js') }}
2024-01-11 04:35:40 +07:00
{% endblock %}