mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
30 lines
No EOL
753 B
Twig
30 lines
No EOL
753 B
Twig
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% set sidebar = theme_var('sidebar')|defined(true) %}
|
|
|
|
{% block menu %}
|
|
{% include 'partials/sidebar_right.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<article class="post">
|
|
<header>
|
|
<div class="title">
|
|
<h2><span class="icon solid fa-exclamation-triangle"></span> Error {{ page.header.http_response_code }}</h2>
|
|
<p>{{ page.content|raw }}</p>
|
|
</div>
|
|
</header>
|
|
</article>
|
|
|
|
{% if sidebar == false %}
|
|
<section id="footer" class="align-center">
|
|
{% include 'partials/footer.html.twig' %}
|
|
</section>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% if sidebar == true %}
|
|
{% include 'partials/sidebar_left.html.twig' %}
|
|
{% endif %}
|
|
{% endblock %} |