我正在尝试渲染一个主题索引文件,我试图导入到pimcore来使用。我已经把主题文件夹放在app/Resources/views中。
我已将以下内容添加到routing.yml文件中
index:
path: /static/dist/index.html
controller: AppBundle\Controller\indexController::index
字符串
下面是我的控制器名为indexController.php
<?php
namespace Appbundle\Controller;
use Pimcore\Controller\FrontendController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;
class indexController extends FrontendController
{
/**
* @Route("/static/dist/index.html", name="homepage")
*/
public function index()
{
return $this->render('static/dist/index.html');
}
}
型
当我尝试导航到localhost/static/dist/index.html时,我得到以下错误:
No engine is able to work with the template "static/dist/index.html".
型
1条答案
按热度按时间ljsrvy3e1#
Pimcore文档指定使用以下选项之一:
样品名称:
字符串
请参阅此处的文档: