カテゴリー
view

viewのheadにcssを追加

application
index.phtml

<?php $this->headLink()->prependStylesheet("/design/base.css");?>

結果

<link href="/design/base.css" media="screen" rel="stylesheet" type="text/css">
カテゴリー
view

viewのheadにtitleタグを追加

layout
layout.phtml

<head>
	<meta charset="utf-8">
	<?= $this->headTitle() ?>
</head>

application
index.phtml

<?php
    $this->headTitle('トップページ');
?>

結果

<head>
    <meta charset="utf-8">
    <title>トップページ</title>
</head>
カテゴリー
view

viewに変数を送る

return new ViewModel([‘item’ => $item]);