admhome/template

Small template engine

1.0.0-stable 2018-02-21 11:34 UTC

This package is auto-updated.

Last update: 2024-12-17 17:26:44 UTC


README

Компактный шаблонизатор.

Переменная:

Шаблон

{PAGE_TITLE}

Код

$tpl->define_var('PAGE_TITLE', $page_title);

Условие:

Шаблон

<!-- IF need_slider -->...<!-- ENDIF -->

Код

$tpl->define_if('need_slider', true);

Блок:

Шаблон

<!-- BLOCK site_main_slider_banners -->
	<div class="swiper-slide">{site_main_slider_banners.CONTENT}</div>
<!-- ENDBLOCK -->

Код

$tpl->define_block('site_main_slider_banners', [
	'CONTENT' => '...'
]);

Подключение другого шаблона:

Шаблон

<!-- INCLUDE calendar.inc.tpl -->