Files
molenda.net/templates/404.twig
T
2026-05-13 22:43:29 +02:00

16 lines
326 B
Twig

{% extends "layout.twig" %}
{% block title %}Page Not Found{% endblock %}
{% block content %}
<section class="section">
<div class="container">
<div class="text-center">
<h1>404</h1>
<p>Page not found.</p>
<a href="/" class="btn btn-primary">Go Home</a>
</div>
</div>
</section>
{% endblock %}