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