mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
18 lines
496 B
Twig
Executable file
18 lines
496 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>
|
|
<section id="footer" class="align-center">
|
|
{% include 'partials/footer.html.twig' %}
|
|
</section>
|
|
{% endblock %}
|