Я пытаюсь визуализировать индексный файл темы, который я пытаюсь импортировать в 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".