base.twig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {% block html_head_container %}
  2. {% include 'html-header.twig' %}
  3. {% block head %}
  4. {% endblock %}
  5. </head>
  6. {% endblock %}
  7. <body class="{{body_class}}" data-template="base.twig">
  8. <a class="skip-link screen-reader-text" href="#content">{{ _e( 'Skip to content') }}</a>
  9. <header class="header" >
  10. {% block header %}
  11. <div class="wrapper">
  12. <h1 class="hdr-logo" role="banner">
  13. <a class="hdr-logo-link" href="{{site.url}}" rel="home">{{site.name}}</a>
  14. </h1>
  15. <nav id="nav-main" class="nav-main" role="navigation">
  16. {% include "menu.twig" with {'items': menu.get_items} %}
  17. </nav><!-- #nav -->
  18. </div>
  19. {% endblock %}
  20. </header>
  21. <section id="content" role="main" class="content-wrapper">
  22. {% if title %}<h1>{{title}}</h1>{% endif %}
  23. <div class="wrapper {{sidebar_class}}">
  24. {% block content %}
  25. Sorry, no content
  26. {% endblock %}
  27. </div>
  28. {% if sidebar %}
  29. <aside class="layout-sidebar">
  30. {{sidebar}}
  31. </aside>
  32. {% endif %}
  33. </section>
  34. {% block footer %}
  35. <footer id="footer">
  36. {% include 'footer.twig' %}
  37. </footer>
  38. {{ function('wp_footer') }}
  39. {% endblock %}
  40. </body>
  41. </html>