123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
-
- /* SensioDistributionBundle::Configurator/layout.html.twig */
- class __TwigTemplate_93e4d891e19c61d655e7ea86fa3e5e1c extends Twig_Template
- {
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
-
- $this->parent = array();
- $this->blocks = array(
- 'title' => array($this, 'block_title'),
- 'content' => array($this, 'block_content'),
- );
- }
-
- 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\" />
- <link rel=\"stylesheet\" href=\"";
- // line 5
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/sensiodistribution/webconfigurator/css/configure.css"), "html");
- echo "\" type=\"text/css\" media=\"all\" />
- <title>";
- // line 6
- $this->displayBlock('title', $context, $blocks);
- echo "</title>
- <link rel=\"shortcut icon\" href=\"";
- // line 7
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/sensiodistribution/webconfigurator/images/favicon.ico"), "html");
- echo "\" />
- </head>
- <body>
- <div id=\"symfony-wrapper\">
- <div id=\"symfony-header\">
- <img src=\"";
- // line 12
- echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/sensiodistribution/webconfigurator/images/logo-small.gif"), "html");
- echo "\" alt=\"Symfony\" />
- </div>
- <div id=\"symfony-content\">
- ";
- // line 15
- $this->displayBlock('content', $context, $blocks);
- // line 16
- echo " </div>
- <div class=\"version\">Symfony Standard Edition v.";
- // line 17
- echo twig_escape_filter($this->env, $this->getContext($context, 'version'), "html");
- echo "</div>
- </div>
- </body>
- </html>
- ";
- }
-
- // line 6
- public function block_title($context, array $blocks = array())
- {
- echo "Web Configurator Bundle";
- }
-
- // line 15
- public function block_content($context, array $blocks = array())
- {
- }
-
- public function getTemplateName()
- {
- return "SensioDistributionBundle::Configurator/layout.html.twig";
- }
-
- public function isTraitable()
- {
- return false;
- }
- }
|