34cfdecc5839b28e178445a377b6.php 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /* WebProfilerBundle:Profiler:base.html.twig */
  3. class __TwigTemplate_757f34cfdecc5839b28e178445a377b6 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. 'head' => array($this, 'block_head'),
  12. 'body' => array($this, 'block_body'),
  13. );
  14. }
  15. protected function doDisplay(array $context, array $blocks = array())
  16. {
  17. $context = array_merge($this->env->getGlobals(), $context);
  18. // line 1
  19. echo "<!DOCTYPE html>
  20. <html>
  21. <head>
  22. <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
  23. <meta name=\"robots\" content=\"noindex,nofollow\" />
  24. <title>";
  25. // line 6
  26. $this->displayBlock('title', $context, $blocks);
  27. echo "</title>
  28. <link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"";
  29. // line 7
  30. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/webprofiler/favicon.ico"), "html");
  31. echo "\" />
  32. ";
  33. // line 8
  34. $this->displayBlock('head', $context, $blocks);
  35. // line 12
  36. echo " </head>
  37. <body>
  38. ";
  39. // line 14
  40. $this->displayBlock('body', $context, $blocks);
  41. // line 15
  42. echo " </body>
  43. </html>
  44. ";
  45. }
  46. // line 6
  47. public function block_title($context, array $blocks = array())
  48. {
  49. echo "Profiler";
  50. }
  51. // line 8
  52. public function block_head($context, array $blocks = array())
  53. {
  54. // line 9
  55. echo " <link href=\"";
  56. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/webprofiler/css/toolbar.css"), "html");
  57. echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />
  58. <link href=\"";
  59. // line 10
  60. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/webprofiler/css/profiler.css"), "html");
  61. echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />
  62. ";
  63. }
  64. // line 14
  65. public function block_body($context, array $blocks = array())
  66. {
  67. echo "";
  68. }
  69. public function getTemplateName()
  70. {
  71. return "WebProfilerBundle:Profiler:base.html.twig";
  72. }
  73. public function isTraitable()
  74. {
  75. return false;
  76. }
  77. }