3649577afd6833810ea750b94410.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. /* TwigBundle::layout.html.twig */
  3. class __TwigTemplate_a8fc3649577afd6833810ea750b94410 extends Twig_Template
  4. {
  5. public function __construct(Twig_Environment $env)
  6. {
  7. parent::__construct($env);
  8. $this->parent = array();
  9. $this->blocks = array(
  10. 'title' => array($this, 'block_title'),
  11. 'body' => array($this, 'block_body'),
  12. );
  13. }
  14. protected function doDisplay(array $context, array $blocks = array())
  15. {
  16. $context = array_merge($this->env->getGlobals(), $context);
  17. // line 1
  18. echo "<!DOCTYPE html>
  19. <html>
  20. <head>
  21. <meta http-equiv=\"Content-Type\" content=\"text/html; charset=";
  22. // line 4
  23. echo twig_escape_filter($this->env, $this->env->getCharset(), "html");
  24. echo "\"/>
  25. <meta name=\"robots\" content=\"noindex,nofollow\" />
  26. <title>";
  27. // line 6
  28. $this->displayBlock('title', $context, $blocks);
  29. echo "</title>
  30. <link href=\"";
  31. // line 7
  32. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/css/exception_layout.css"), "html");
  33. echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"all\" />
  34. <link href=\"";
  35. // line 8
  36. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/css/exception.css"), "html");
  37. echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"all\" />
  38. </head>
  39. <body>
  40. <div id=\"content\">
  41. <div class=\"header clear_fix\">
  42. <div class=\"header_logo\">
  43. <img src=\"";
  44. // line 14
  45. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/images/logo_symfony.gif"), "html");
  46. echo "\" alt=\"Symfony\" />
  47. </div>
  48. <div class=\"search\">
  49. <form method=\"get\" action=\"http://symfony.com/search\">
  50. <div class=\"form_row\">
  51. <label for=\"search_id\">
  52. <img src=\"";
  53. // line 22
  54. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/images/grey_magnifier.png"), "html");
  55. echo "\" alt=\"Search on Symfony website\" />
  56. </label>
  57. <input name=\"q\" id=\"search_id\" type=\"search\" placeholder=\"Search on Symfony website\" />
  58. <button type=\"submit\">
  59. <span class=\"border_l\">
  60. <span class=\"border_r\">
  61. <span class=\"btn_bg\">OK</span>
  62. </span>
  63. </span>
  64. </button>
  65. </div>
  66. </form>
  67. </div>
  68. </div>
  69. ";
  70. // line 39
  71. $this->displayBlock('body', $context, $blocks);
  72. // line 40
  73. echo " </div>
  74. </body>
  75. </html>
  76. ";
  77. }
  78. // line 6
  79. public function block_title($context, array $blocks = array())
  80. {
  81. echo "";
  82. }
  83. // line 39
  84. public function block_body($context, array $blocks = array())
  85. {
  86. echo "";
  87. }
  88. public function getTemplateName()
  89. {
  90. return "TwigBundle::layout.html.twig";
  91. }
  92. public function isTraitable()
  93. {
  94. return false;
  95. }
  96. }