mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 11:58:53 +00:00
28 lines
No EOL
685 B
Twig
Executable file
28 lines
No EOL
685 B
Twig
Executable file
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% block header %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<article class="post">
|
|
<header>
|
|
<div class="title">
|
|
<h1 class="logo"><a href="{{ home_url }}">{{ site.title|raw }}</a></h1>
|
|
<h2>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/sidebar-bits/footer.html.twig' %}
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% if sidebar == true %}
|
|
{% include 'partials/sidebar_left.html.twig' %}
|
|
{% endif %}
|
|
{% endblock %} |