14 lines
272 B
HTML
14 lines
272 B
HTML
{% extends "global/layout.html" %}
|
|
{% block title -%}
|
|
{% trans -%}
|
|
Not found
|
|
{%- endtrans %}
|
|
{%- endblock %}
|
|
|
|
{% block content %}
|
|
{% trans -%}
|
|
Yep... the resource, you were searching for, is named differently, doesn't exist or was removed.
|
|
{%- endtrans %}
|
|
|
|
{% endblock %}
|