Source of file twig_layout.tpl.php
Size: 0,787 Bytes - Last Modified: 2023-11-16T22:56:03+01:00
/home/websites/teicee/packagist/site/phpdoc/conf/../vendor/teicee/make-bundle/src/Resources/skeleton/base/twig_layout.tpl.php
| 12345678910111213141516171819202122232425262728293031323334353637 | {% extends '@TICTwig/layout_default.html.twig' %}<?php if (isset($webpack_entry)): ?> {% block stylesheets %} {{ parent() }}{{ encore_entry_link_tags('<?= $webpack_entry ?>') }} {% endblock stylesheets %}{% block javascripts %} {{ parent() }}{{ encore_entry_script_tags('<?= $webpack_entry ?>') }} {% endblock javascripts %}<?php endif ?> {% block page_header %}{{ include('@TICTwig/header/_navbar_bs5.html.twig', { 'color': "light", 'brand': { 'name': "TIC Sf6", 'logo': asset('bundles/tictwig/images/logo-teicee-sm.png'), 'link': "/", }, 'menu': [{ 'label': 'nav.home', 'icon': 'home', 'link': "/", },{ 'label': 'nav.debug', 'icon': 'bug-fill', 'link': "/_profiler/", }]}) }}{% endblock page_header %} |