123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
-
- /* TwigBundle::layout.html.twig */
- class __TwigTemplate_a8fc3649577afd6833810ea750b94410 extends Twig_Template
- {
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
-
- $this->parent = array();
- $this->blocks = array(
- 'title' => array($this, 'block_title'),
- 'body' => array($this, 'block_body'),
- );
- }
-
- protected function doDisplay(array $context, array $blocks = array())
- {
- $context = array_merge($this->env->getGlobals(), $context);
-
- // line 1
- echo "<!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv=\"Content-Type\" content=\"text/html; charset=";
- // line 4
- echo twig_escape_filter($this->env, $this->env->getCharset(), "html");
- echo "\"/>
- <meta name=\"robots\" content=\"noindex,nofollow\" />
- <title>";
- // line 6
- $this->displayBlock('title', $context, $blocks);
- echo "</title>
- <link href=\"";
- // line 7
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/css/exception_layout.css"), "html");
- echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"all\" />
- <link href=\"";
- // line 8
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/css/exception.css"), "html");
- echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"all\" />
- </head>
- <body>
- <div id=\"content\">
- <div class=\"header clear_fix\">
- <div class=\"header_logo\">
- <img src=\"";
- // line 14
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/images/logo_symfony.gif"), "html");
- echo "\" alt=\"Symfony\" />
- </div>
-
- <div class=\"search\">
- <form method=\"get\" action=\"http://symfony.com/search\">
- <div class=\"form_row\">
-
- <label for=\"search_id\">
- <img src=\"";
- // line 22
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/images/grey_magnifier.png"), "html");
- echo "\" alt=\"Search on Symfony website\" />
- </label>
-
- <input name=\"q\" id=\"search_id\" type=\"search\" placeholder=\"Search on Symfony website\" />
-
- <button type=\"submit\">
- <span class=\"border_l\">
- <span class=\"border_r\">
- <span class=\"btn_bg\">OK</span>
- </span>
- </span>
- </button>
- </div>
- </form>
- </div>
- </div>
-
- ";
- // line 39
- $this->displayBlock('body', $context, $blocks);
- // line 40
- echo " </div>
- </body>
- </html>
- ";
- }
-
- // line 6
- public function block_title($context, array $blocks = array())
- {
- echo "";
- }
-
- // line 39
- public function block_body($context, array $blocks = array())
- {
- echo "";
- }
-
- public function getTemplateName()
- {
- return "TwigBundle::layout.html.twig";
- }
-
- public function isTraitable()
- {
- return false;
- }
- }
|