misuzu/templates/user/notfound.twig

13 lines
309 B
Twig
Raw Normal View History

2018-08-15 01:12:58 +00:00
{% extends 'user/master.twig' %}
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">
<div class="container__title">User not found!</div>
<div class="container__content">
2018-03-22 17:56:35 +00:00
<p>Check the url and try again.</p>
</div>
</div>
{% endblock %}