src/Controller/ContentController.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Pimcore\Controller\FrontendController;
  4. use Symfony\Component\HttpFoundation\Request;
  5. class ContentController extends FrontendController
  6. {
  7.     public function indexAction(Request $request)
  8.     {
  9.         return $this->render('content/index.html.twig');
  10.     }
  11.     public function footerAction()
  12.     {
  13.         return $this->render('content/footer.html.twig');
  14.     }
  15.     public function dashboardAction()
  16.     {
  17.         return $this->render('content/dashboard.html.twig');
  18.     }
  19.     public function dashboardUnsplashAction()
  20.     {
  21.         return $this->render('content/unsplash.html.twig');
  22.     }
  23.     public function handwerkerAction(Request $request) {
  24.         return $this->render('handwerker/default.html.twig');
  25.     }
  26. }