d891e19c61d655e7ea86fa3e5e1c.php 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. /* SensioDistributionBundle::Configurator/layout.html.twig */
  3. class __TwigTemplate_93e4d891e19c61d655e7ea86fa3e5e1c 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. 'content' => array($this, 'block_content'),
  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=utf-8\" />
  22. <link rel=\"stylesheet\" href=\"";
  23. // line 5
  24. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/sensiodistribution/webconfigurator/css/configure.css"), "html");
  25. echo "\" type=\"text/css\" media=\"all\" />
  26. <title>";
  27. // line 6
  28. $this->displayBlock('title', $context, $blocks);
  29. echo "</title>
  30. <link rel=\"shortcut icon\" href=\"";
  31. // line 7
  32. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/sensiodistribution/webconfigurator/images/favicon.ico"), "html");
  33. echo "\" />
  34. </head>
  35. <body>
  36. <div id=\"symfony-wrapper\">
  37. <div id=\"symfony-header\">
  38. <img src=\"";
  39. // line 12
  40. echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/sensiodistribution/webconfigurator/images/logo-small.gif"), "html");
  41. echo "\" alt=\"Symfony\" />
  42. </div>
  43. <div id=\"symfony-content\">
  44. ";
  45. // line 15
  46. $this->displayBlock('content', $context, $blocks);
  47. // line 16
  48. echo " </div>
  49. <div class=\"version\">Symfony Standard Edition v.";
  50. // line 17
  51. echo twig_escape_filter($this->env, $this->getContext($context, 'version'), "html");
  52. echo "</div>
  53. </div>
  54. </body>
  55. </html>
  56. ";
  57. }
  58. // line 6
  59. public function block_title($context, array $blocks = array())
  60. {
  61. echo "Web Configurator Bundle";
  62. }
  63. // line 15
  64. public function block_content($context, array $blocks = array())
  65. {
  66. }
  67. public function getTemplateName()
  68. {
  69. return "SensioDistributionBundle::Configurator/layout.html.twig";
  70. }
  71. public function isTraitable()
  72. {
  73. return false;
  74. }
  75. }