2017 © Pedro Peláez
 

library template

Small template engine

image

admhome/template

Small template engine

  • Wednesday, February 21, 2018
  • by admhome
  • Repository
  • 1 Watchers
  • 0 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Template

Компактный шаблонизатор., (*1)

Переменная:

Шаблон, (*2)

{PAGE_TITLE}

Код, (*3)

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

Условие:

Шаблон, (*4)

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

Код, (*5)

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

Блок:

Шаблон, (*6)

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

Код, (*7)

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

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

Шаблон, (*8)

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

The Versions

21/02 2018

dev-master

9999999-dev

Small template engine

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by Avatar admhome

21/02 2018

1.0.0-stable

1.0.0.0

Small template engine

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by Avatar admhome