grav-theme-future2021/templates/offline.html.twig
pmoreno.rodriguez e2a4c0fa5b
Initial commit
2022-02-04 07:12:18 +01:00

18 lines
500 B
Twig

{% 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 }}</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 %}