예제 #1
0
파일: headerView.php 프로젝트: piiskop/pstk
<?php

require_once 'HTML/Template/IT.php';
$tpl = new \HTML_Template_IT(dirname(__FILE__) . '/../HTML');
$tpl->loadTemplatefile('header.html');
$tpl->touchBlock('header');
$tpl->parse('header');
echo $tpl->GET('header');
예제 #2
0
파일: FooterView.php 프로젝트: piiskop/pstk
<?php

require_once 'HTML/Template/IT.php';
$tpl = new \HTML_Template_IT(dirname(__FILE__) . '/../../HTML');
$tpl->loadTemplatefile('footer.html');
$tpl->touchBlock('footer');
$tpl->parse('footer');
echo $tpl->GET('footer');