小枝テンプレートエンジンの使用に関するyii2ドキュメントの指示に従いました
config/web.php (index.php から含まれています) には、次のものがあります。
'view' => [
'class' => 'yii\web\View',
'renderers' => [
'twig' => [
'class' => 'yii\twig\ViewRenderer',
'cachePath' => '@runtime/Twig/cache',
'options' => ['auto_reload' => true], /* Array of twig options */
'globals' => ['html' => '\yii\helpers\Html'],
],
],
],
SiteController.php で:
public function actionIndex()
{
echo $this->render('index.twig');
}
views/site/index.twig にテキストがあります:
views/layouts/main.php
しかし、生の html を表示する代わりに、メイン レイアウトで変数として使用される index.twig コンテンツに基づくテンプレートが表示されます。