我正在使用Twig模板引擎,我是使用此框架的新手。我想将页面标题设置为“HomePage”。
我无法做到。这是PHP / HTML的代码片段:
$template = $loader->getTemplate('index.html');
$renderArr['title_name'] = "My Home Page";
$renderArr['seq'] = array(1, 2, 3, 4);
$template->display($renderArr);
HTML
{% include 'header.html' %}
<title>{{ title_name }}</title> <!-- Not working -->
<!-- Working -->
{% for item in seq %}
<li>${item|escape}</li>
{% endfor %}
知道怎么做吗?