mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-17 08:32:04 +03:00
15 lines
500 B
Twig
15 lines
500 B
Twig
{% extends 'layout/default.html.twig' %}
|
|
|
|
{% block title %}{{ status }} {{ reason }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Oops!</h1>
|
|
<h2>This is awkward.</h2>
|
|
<p>We encountered a {{ status }} {{ reason }} error.</p>
|
|
{% if status == 404 %}
|
|
<p>
|
|
You are looking for something that doesn't exist or may have moved. Check out one of the links on this page
|
|
or head back to <a href="{{ path('home') }}">Home</a>.
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|