cakephp3 css js インライン表示
・view(head)
<head>
<?= $this->fetch('css')."\n"; ?>
<?= $this->fetch('script')."\n" ?>
</head>
・view
<?php $this->prepend('css', $this->Html->css('hoge')) ?>
<?php $this->prepend('script', $this->Html->script('fuga')) ?>
・output
<head> <link rel="stylesheet" href="/css/hoge.css"/> <script src="/js/fuga.js"></script> </head>