12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {% 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) %}
- {% if theme_var('spectre.exp') %}{% do assets.addCss('theme://css-compiled/spectre-exp'~compress) %}{% endif %}
- {% if theme_var('spectre.icons') %}{% do assets.addCss('theme://css-compiled/spectre-icons'~compress) %}{% endif %}
- {% do assets.addCss('theme://css-compiled/theme'~compress) %}
- {% do assets.addCss('theme://css/custom.css') %}
- {% do assets.addCss('theme://css/line-awesome.min.css') %}
- {% endblock %}
- {{ assets.css() }}
- {% block javascripts %}
- {% do assets.addJs('jquery', 101) %}
- {% do assets.addJs('theme://js/jquery.treemenu.js', {group:'bottom'}) %}
- {% do assets.addJs('theme://js/site.js', {group:'bottom'}) %}
- {% endblock %}
- {{ assets.js() }}
- {% endblock head %}
- </head>
- <body id="top" class="{% block body_classes %}{{ body_classes }}{% endblock %}">
- <div id="page-wrapper">
- {% block header %}
- <section id="header" class="section">
- <section class="container {{ grid_size }}">
- <nav class="navbar">
- <section class="navbar-section">
- <nav class="dropmenu animated">
- {% block header_navigation %}
- {% include 'partials/navigation.html.twig' %}
- {% endblock %}
- </nav>
- </section>
- </nav>
- </section>
- </section>
- {% endblock %}
- <section id="start">
- {% block body %}
- <section id="body-wrapper" class="section">
- <section class="container {{ grid_size }}">
- {% block content %}{% endblock %}
- </section>
- </section>
- {% endblock %}
- </section>
- </div>
- {% block bottom %}
- {{ assets.js('bottom') }}
- {% endblock %}
- </body>
|