shlink/templates/error/404.html.twig

14 lines
417 B
Twig
Raw Normal View History

2016-04-10 10:38:07 +03:00
{% 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. Check out one of the links on this page
or head back to <a href="{{ path('home') }}">Home</a>.
</p>
{% endblock %}