base.html.twig 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {% set theme_config = attribute(config.themes, config.system.pages.theme) %}
  2. <!DOCTYPE html>
  3. <html lang="{{ grav.language.getActive ?: grav.config.site.default_lang }}">
  4. <head>
  5. {% block head %}
  6. <meta charset="utf-8" />
  7. <title>{% if header.title %}{{ header.title|e('html') }} | {% endif %}{{ site.title|e('html') }}</title>
  8. {% include 'partials/metadata.html.twig' %}
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  10. <link rel="icon" type="image/png" href="{{ url('theme://images/favicon.png') }}" />
  11. <link rel="canonical" href="{{ page.url(true, true) }}" />
  12. {% block stylesheets %}
  13. {% do assets.addCss('theme://css/pure-0.5.0/grids-min.css', 103) %}
  14. {% do assets.addCss('theme://css-compiled/nucleus.css', 102) %}
  15. {% do assets.addCss('theme://css-compiled/template.css', 101) %}
  16. {% do assets.addCss('theme://css/custom.css', 100) %}
  17. {% do assets.addCss('theme://css/font-awesome.min.css', 100) %}
  18. {% do assets.addCss('theme://css/slidebars.min.css') %}
  19. {% if browser.getBrowser == 'msie' and browser.getVersion == 10 %}
  20. {% do assets.addCss('theme://css/nucleus-ie10.css') %}
  21. {% endif %}
  22. {% if browser.getBrowser == 'msie' and browser.getVersion >= 8 and browser.getVersion <= 9 %}
  23. {% do assets.addCss('theme://css/nucleus-ie9.css') %}
  24. {% do assets.addJs('theme://js/html5shiv-printshiv.min.js') %}
  25. {% endif %}
  26. {% endblock %}
  27. {% block javascripts %}
  28. {% do assets.addJs('jquery', 101) %}
  29. {% do assets.addJs('theme://js/modernizr.custom.71422.js', 100) %}
  30. {% do assets.addJs('theme://js/antimatter.js') %}
  31. {% do assets.addJs('theme://js/slidebars.min.js') %}
  32. {% endblock %}
  33. {% block assets deferred %}
  34. {{ assets.css()|raw }}
  35. {{ assets.js()|raw }}
  36. {% endblock %}
  37. {% endblock head %}
  38. </head>
  39. <body id="top" class="{{ page.header.body_classes }}">
  40. <div id="sb-site">
  41. {% block header %}
  42. <header id="header">
  43. <div id="logo">
  44. <h3><a href="{{ base_url == '' ? '/' : base_url }}">{{ config.site.title }}</a></h3>
  45. </div>
  46. <div id="navbar">
  47. {% block header_extra %}{% endblock %}
  48. {% if config.plugins.langswitcher.enabled %}
  49. {% include 'partials/langswitcher.html.twig' %}
  50. {% endif %}
  51. {% block header_navigation %}
  52. {% include 'partials/navigation.html.twig' %}
  53. {% endblock %}
  54. <span class="panel-activation sb-toggle-left navbar-left menu-btn fa fa-bars"></span>
  55. </div>
  56. </header>
  57. {% endblock %}
  58. {% block showcase %}{% endblock %}
  59. {% block body %}
  60. <section id="body" class="{{ class }}">
  61. {% block content %}{% endblock %}
  62. </section>
  63. {% endblock %}
  64. {% block footer %}
  65. <footer id="footer">
  66. <div class="totop">
  67. <span><a href="#" id="toTop"><i class="fa fa-arrow-up"></i></a></span>
  68. </div>
  69. <p><a href="http://getgrav.org">Grav</a> was <i class="fa fa-code"></i> with <i class="fa fa-heart"></i> by <a href="http://www.rockettheme.com">RocketTheme</a>.</p>
  70. </footer>
  71. {% endblock %}
  72. </div>
  73. {% block sidebar_navigation %}
  74. <div class="sb-slidebar sb-left sb-width-thin">
  75. <div id="panel">
  76. {% include 'partials/navigation.html.twig' %}
  77. </div>
  78. </div>
  79. {% endblock %}
  80. {% block bottom %}
  81. <script>
  82. $(function () {
  83. $(document).ready(function() {
  84. $.slidebars({
  85. hideControlClasses: true,
  86. scrollLock: true
  87. });
  88. });
  89. });
  90. </script>
  91. {{ assets.js('bottom')|raw }}
  92. {% endblock %}
  93. </body>
  94. </html>