1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {% set body_classes = body_class(['header-fixed', 'header-animated', 'header-dark', 'header-transparent', 'sticky-footer']) %}
- {% set grid_size = theme_var('grid-size') %}
- {% set compress = theme_var('production-mode') ? '.min.css' : '.css' %}
- <!DOCTYPE html>
- <html lang="{{ grav.language.getActive ?: grav.config.site.default_lang }}">
- <head>
- {% block head %}
- <meta charset="utf-8" />
- <title>{% if header.title %}{{ header.title|e('html') }} | {% endif %}{{ site.title|e('html') }}</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- {% include 'partials/metadata.html.twig' %}
- <link rel="icon" type="image/png" href="{{ url('theme://images/favicon.png') }}" />
- <link rel="canonical" href="{{ page.url(true, true) }}" />
- {% block stylesheets %}
- {% do assets.addCss('theme://css-compiled/spectre'~compress) %}
- {% do assets.addCss('theme://css-compiled/theme'~compress) %}
- {% endblock %}
- {% block javascripts %}
- {% do assets.addJs('jquery', 101) %}
- {% do assets.addJs('theme://js/site.js', {group:'bottom'}) %}
- {% endblock %}
- {% block assets deferred %}
- {{ assets.css()|raw }}
- {{ assets.js()|raw }}
- {% endblock %}
- <script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/a98b763288f940083bf28857c/d26d4af6b93e3686e6a245680.js");</script>
- {% endblock head %}
- </head>
- <body id="top" class="{% block body_classes %}{{ body_classes }}{% endblock %}">
- {% block header %}
- <section id="header" class="section">
- <nav class="navbar">
- <section class="logo">
- <h1>{{site.title}}</h1>
- </section>
- <section class="desktop-menu">
- <nav class="dropmenu animated">
- {% block header_navigation %}
- {% include 'partials/navigation.html.twig' %}
- {% endblock %}
- </nav>
- {% if config.plugins.login.enabled and grav.user.username %}
- <span class="login-status-wrapper"><i class="fa fa-user"></i> {% include 'partials/login-status.html.twig' %}</span>
- {% endif %}
- </section>
- </nav>
- </section>
- {% endblock %}
- {% block hero %}{% endblock %}
- <section id="start">
- {% block body %}
- <section id="body-wrapper" class="section">
- <section class="container {{ grid_size }}">
- {% block messages %}
- {% include 'partials/messages.html.twig' ignore missing %}
- {% endblock %}
- {% block content %}{% endblock %}
- {% block sidebar %}{% endblock %}
- </section>
- </section>
- {% endblock %}
- </section>
- {% block footer %}
- {% include 'partials/footer.html.twig' %}
- {% endblock %}
- {% block bottom %}
- {{ assets.js('bottom')|raw }}
- {% endblock %}
- </body>
- </html>
|