ac1804a4563fc6a6998c0464b482.php 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /* TwigBundle:Exception:error.html.twig */
  3. class __TwigTemplate_970dac1804a4563fc6a6998c0464b482 extends Twig_Template
  4. {
  5. protected function doDisplay(array $context, array $blocks = array())
  6. {
  7. $context = array_merge($this->env->getGlobals(), $context);
  8. // line 1
  9. echo "<!DOCTYPE html>
  10. <html>
  11. <head>
  12. <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
  13. <title>An Error Occurred: ";
  14. // line 5
  15. echo twig_escape_filter($this->env, $this->getContext($context, 'status_text'), "html");
  16. echo "</title>
  17. </head>
  18. <body>
  19. <h1>Oops! An Error Occurred</h1>
  20. <h2>The server returned a \"";
  21. // line 9
  22. echo twig_escape_filter($this->env, $this->getContext($context, 'status_code'), "html");
  23. echo " ";
  24. echo twig_escape_filter($this->env, $this->getContext($context, 'status_text'), "html");
  25. echo "\".</h2>
  26. <div>
  27. Something is broken. Please e-mail us at [email] and let us know
  28. what you were doing when this error occurred. We will fix it as soon
  29. as possible. Sorry for any inconvenience caused.
  30. </div>
  31. </body>
  32. </html>
  33. ";
  34. }
  35. public function getTemplateName()
  36. {
  37. return "TwigBundle:Exception:error.html.twig";
  38. }
  39. public function isTraitable()
  40. {
  41. return false;
  42. }
  43. }