Joywork/api/app/templates/errors/not-found.twig
2026-05-22 21:21:54 +03:00

16 lines
343 B
Twig

{% extends "layouts/main.twig" %}
{% block bodyId %}not-found{% endblock %}
{% block metaTitle %}404 not found{% endblock %}
{% block content %}
<div>
<h1>Resource not found</h1>
<p>
Page does not exist.
<br><br>
<a href="{{ urlFor('home')|e('html_attr') }}">Go to homepage</a>
</p>
</div>
{% endblock %}