123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
-
- /* WebProfilerBundle:Profiler:base.html.twig */
- class __TwigTemplate_757f34cfdecc5839b28e178445a377b6 extends Twig_Template
- {
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
-
- $this->parent = array();
- $this->blocks = array(
- 'title' => array($this, 'block_title'),
- 'head' => array($this, 'block_head'),
- '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=utf-8\" />
- <meta name=\"robots\" content=\"noindex,nofollow\" />
- <title>";
- // line 6
- $this->displayBlock('title', $context, $blocks);
- echo "</title>
- <link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"";
- // line 7
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/webprofiler/favicon.ico"), "html");
- echo "\" />
- ";
- // line 8
- $this->displayBlock('head', $context, $blocks);
- // line 12
- echo " </head>
- <body>
- ";
- // line 14
- $this->displayBlock('body', $context, $blocks);
- // line 15
- echo " </body>
- </html>
- ";
- }
-
- // line 6
- public function block_title($context, array $blocks = array())
- {
- echo "Profiler";
- }
-
- // line 8
- public function block_head($context, array $blocks = array())
- {
- // line 9
- echo " <link href=\"";
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/webprofiler/css/toolbar.css"), "html");
- echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />
- <link href=\"";
- // line 10
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/webprofiler/css/profiler.css"), "html");
- echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />
- ";
- }
-
- // line 14
- public function block_body($context, array $blocks = array())
- {
- echo "";
- }
-
- public function getTemplateName()
- {
- return "WebProfilerBundle:Profiler:base.html.twig";
- }
-
- public function isTraitable()
- {
- return false;
- }
- }
|