From 9dccb451f61552d806e4312b6975268cb2e91d1c Mon Sep 17 00:00:00 2001 From: Arsen Mirzaev Tatyano-Muradovich Date: Mon, 16 Dec 2024 18:13:59 +0700 Subject: [PATCH] added aside.html --- author/project/system/views/themes/default/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/author/project/system/views/themes/default/index.html b/author/project/system/views/themes/default/index.html index 85ad9c7..5868ff6 100755 --- a/author/project/system/views/themes/default/index.html +++ b/author/project/system/views/themes/default/index.html @@ -2,16 +2,19 @@ {% 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 "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 %} {% block css %} {{ block('core_css') }} {{ block('header_css') }} +{{ block('aside_css') }} {{ block('footer_css') }} {% endblock %} {% block body %} {{ block('header') }} +{{ block('aside') }}
{% block main %} {{ main|raw }} @@ -23,5 +26,6 @@ {% block js %} {{ block('footer_js') }} {{ block('header_js') }} +{{ block('aside_js') }} {{ block('core_js') }} {% endblock %}