This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
misuzu-interim/templates/errors/400.twig

9 lines
203 B
Twig
Raw Normal View History

2022-09-13 15:14:49 +02:00
{% extends 'errors/master.twig' %}
{% set error_code = 400 %}
{% set error_text = 'Bad Request' %}
{% block error_message %}
<p>Whatever you tried to do, you probably shouldn't.</p>
{% endblock %}