94 lines
3.5 KiB
Twig
94 lines
3.5 KiB
Twig
{% 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) %}
|
|
{% do assets.addCss('theme://css/leaflet.css') %}
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
|
|
{% do assets.addJs('jquery', 101) %}
|
|
{% do assets.addJs('theme://js/masonry.pkgd.min.js', {group:'bottom'}) %}
|
|
{% do assets.addJs('theme://js/imagesloaded.pkgd.min.js', {group:'bottom'}) %}
|
|
{% do assets.addJs('theme://js/multipleFilterMasonry.js', {group:'bottom'}) %}
|
|
{% do assets.addJs('theme://js/jquery.slides.min.js', {group:'bottom'}) %}
|
|
{% do assets.addJs('theme://js/leaflet.js', {group:'bottom'}) %}
|
|
{% do assets.addJs('theme://js/site.js', {group:'bottom'}) %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block assets deferred %}
|
|
{{ assets.css()|raw }}
|
|
{{ assets.js()|raw }}
|
|
{% endblock %}
|
|
{% 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">
|
|
<a href="/"><h1>{{site.title}}</h1></a>
|
|
</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 %}
|
|
|
|
<div class="reso">
|
|
<img src="/user/themes/lecampus/images/fb.svg" alt="">
|
|
<img src="/user/themes/lecampus/images/yt.svg" alt="">
|
|
</div>
|
|
</section>
|
|
</nav>
|
|
</section>
|
|
{% endblock %}
|
|
|
|
{% block hero %}{% endblock %}
|
|
|
|
<section id="{{page.template}}" class="start">
|
|
{% block body %}
|
|
<section id="body-wrapper" class="section">
|
|
<section id="item">
|
|
{% 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>
|