typemill/themes/cyanine/404.twig
2020-10-03 21:28:20 +02:00

24 lines
No EOL
526 B
Twig

{% extends 'layout.twig' %}
{% block title %}ERROR 404: Page not found{% endblock %}
{% block content %}
<section class="w-100 dib tc bt bl br bb">
<div class="mw7 pb7 ph3 center">
<header class="mt6">
<h1 class="f-large f-headline-ns lh-title mv2 pt5-ns">Not Found</h1>
</header>
<div class="f5 f4-ns fw3 lh-copy">
<p>Sorry, but we did not find the page that you are looking for.</p>
</div>
<a class="button link dim ph4 pv3 mt3 dib" href="{{ base_url }}">Home</a>
</div>
</section>
{% endblock %}