templates/juki/HitsoCommonBundle/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html class="no-js" dir="ltr" lang="pl">
  3. <head>
  4.     {% block meta %}
  5.         {% include 'HitsoCommonBundle:Common:meta.html.twig' %}
  6.     {% endblock %}
  7.     <link rel="preload" href="{{ asset('site.webmanifest') }}" onload="this.onload=null;this.rel='manifest'">
  8.     <link rel="alternate" href="{{ path('article_stream',{"format": "rss", "typeName": "articles"}) }}" type="application/rss+xml"/>
  9.     <link rel="alternate" href="{{ path('article_stream',{"format": "atom", "typeName": "articles"}) }}" type="application/atom+xml"/>
  10.     {% for site in sites.alternateContentSites %}
  11.         <link rel="alternate" href="{{ site.url }}" hreflang="{{ site.id }}"/>
  12.     {% endfor %}
  13.     {% block stylesheets %}
  14.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Hind+Madurai:300,400,500,600,700&amp;subset=latin-ext">
  15.         <link rel="preload" href="{{ preload(asset('juki/source/css/common.css'), { as: 'style' }) }}" as="style" onload="this.onload=null;this.rel='stylesheet'">
  16.     {% endblock %}
  17.     {% block header_javascripts %}
  18.     {% endblock %}
  19.     <!--  FRONT/DEV: Poniższy JS zostawiamy wprowadzony inline tak jak poniżej  -->
  20.     <script>
  21.      !function(t){"use strict";t.loadCSS||(t.loadCSS=function(){});var e=loadCSS.relpreload={};if(e.support=function(){var e;try{e=t.document.createElement("link").relList.supports("preload")}catch(t){e=!1}return function(){return e}}(),e.bindMediaToggle=function(t){var e=t.media||"all";function a(){t.media=e}t.addEventListener?t.addEventListener("load",a):t.attachEvent&&t.attachEvent("onload",a),setTimeout(function(){t.rel="stylesheet",t.media="only x"}),setTimeout(a,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getElementsByTagName("link"),n=0;n<a.length;n++){var o=a[n];"preload"!==o.rel||"style"!==o.getAttribute("as")||o.getAttribute("data-loadcss")||(o.setAttribute("data-loadcss",!0),e.bindMediaToggle(o))}},!e.support()){e.poly();var a=t.setInterval(e.poly,500);t.addEventListener?t.addEventListener("load",function(){e.poly(),t.clearInterval(a)}):t.attachEvent&&t.attachEvent("onload",function(){e.poly(),t.clearInterval(a)})}"undefined"!=typeof exports?exports.loadCSS=loadCSS:t.loadCSS=loadCSS}("undefined"!=typeof global?global:this);
  22.     </script>
  23. </head>
  24. <body {% block body_attrs %}{% endblock %} class="{% block body_class %}page{% endblock %}" itemtype="http://schema.org/WebPage">
  25. {% block body_top %}{% endblock %}
  26. {% block search %}
  27.     {% include 'HitsoCommonBundle:Common:search.html.twig' %}
  28. {% endblock %}
  29. {% block header %}
  30.     {# {% include 'HitsoCommonBundle:Common:header.html.twig' %} #}
  31. {% endblock %}
  32. {% block breadcrumbs %}
  33.     {% include 'HitsoCommonBundle:Common:breadcrumbs.html.twig' %}
  34. {% endblock %}
  35. {% block content %}{% endblock %}
  36. {% block footer %}
  37.     {# {% include 'HitsoCommonBundle:Common:footer.html.twig' %} #}
  38. {% endblock %}
  39. {% block json_ld %}
  40.     {% include 'HitsoCommonBundle:Common:json_ld.html.twig' %}
  41. {% endblock %}
  42. {% block footer_javascripts %}
  43.     {{ recaptcha_js() }}
  44. {% endblock %}
  45. </body>
  46. </html>