misuzu/templates/user/notfound.twig

15 lines
347 B
Twig
Raw Normal View History

2018-08-15 01:12:58 +00:00
{% extends 'user/master.twig' %}
2018-10-22 19:53:21 +00:00
{% from 'macros.twig' import container_title %}
2018-03-22 17:56:35 +00:00
{% set title = 'User not found!' %}
{% block content %}
2018-04-16 00:33:54 +00:00
<div class="container">
2018-10-22 19:53:21 +00:00
{{ container_title('User not found!') }}
2018-04-16 00:33:54 +00:00
<div class="container__content">
2018-03-22 17:56:35 +00:00
<p>Check the url and try again.</p>
</div>
</div>
{% endblock %}