mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-28 14:18:53 +00:00
16 lines
422 B
Twig
16 lines
422 B
Twig
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% block menu %}
|
|
{% include 'partials/sidebar_right.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<article class="post">
|
|
<header>
|
|
<div class="title">
|
|
<h2><span class="icon fa-exclamation-triangle"></span> Error {{ page.header.http_response_code }}</h2>
|
|
<p>{{ page.content|raw }}</p>
|
|
</div>
|
|
</header>
|
|
</article>
|
|
{% endblock %}
|