mirror of
https://github.com/shlinkio/shlink.git
synced 2025-01-07 04:17:33 +03:00
12 lines
314 B
Twig
12 lines
314 B
Twig
{% extends 'layout/default.html.twig' %}
|
|
|
|
{% block title %}404 Not Found{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Oops!</h1>
|
|
<h2>This is awkward.</h2>
|
|
<p>We encountered a 404 Not Found error.</p>
|
|
<p>
|
|
You are looking for something that doesn't exist or may have moved.
|
|
</p>
|
|
{% endblock %}
|