Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
$data['tpl']['head'] = $this->load->view('tpl/head', $data, true);
$data['tpl']['footer'] = $this->load->view('tpl/footer', $data, true);
$this->load->view('page', $data);
<?=$tpl['head']?>
<?="content"?>
<?=$tpl['footer']?>
{% include 'header.twig' %}
{% block content %} {{ content }} {% endblock %}
{% include 'footer.twig' %}
$loader = new Twig_Loader_FileSystem($this->_template_dir, $this->_cache_dir);
на$loader = new Twig_Loader_Filesystem($this->_template_dir, $this->_cache_dir);
Fatal error: Class 'Twig_Loader_FileSystem' not found in ...
Интеграция шаблонизатора Twig в CodeIgniter 2