8 lines
284 B
Twig
8 lines
284 B
Twig
{% set is_404 = status_code is defined and status_code == 404 %}
|
|
{% extends '@novaconium/master.html.twig' %}
|
|
|
|
{% block content %}
|
|
<h1>404 File Not Found</h1>
|
|
<p style="font-size:10px; margin-top:60px">Novaconium Default 404 page.</p>
|
|
<p><a href="/">Return Home</a></p>
|
|
{% endblock %} |