<?phpnamespace Hona\WebBundle\Controller;use Symfony\Bundle\FrameworkBundle\Controller\Controller;use Symfony\Component\Routing\Annotation\Route;use Symfony\Component\HttpFoundation\Request;class DefaultController extends Controller{ /** * @Route("/", name="index_web") */ public function indexAction(Request $request) { return $this->render('@HonaWeb/Default/policy.html.twig', array( 'onlyMetas' => true )); }}