mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
21 lines
541 B
Twig
21 lines
541 B
Twig
{% extends 'layout/default.html.twig' %}
|
|
|
|
{% block title %}{{ status }} {{ reason }}{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
<style>
|
|
p {margin-bottom: 20px;}
|
|
body {text-align: center;}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Oops!</h1>
|
|
<hr>
|
|
<p>We encountered a {{ status }} {{ reason }} error.</p>
|
|
{% if status == 404 %}
|
|
<p>This short URL doesn't seem to be valid.</p>
|
|
<p>Make sure you included all the characters, with no extra punctuation.</p>
|
|
{% endif %}
|
|
{% endblock %}
|