mcms-node-framework
Version:
the mcms-node framwork
27 lines (23 loc) • 739 B
HTML
{% extends "./error.html" %}
{% block pageTitle %}Error 404{% endblock %}
{% block content %}
<div class="col-sm-12 page-error">
<div class="error-number teal">
404
</div>
<div class="error-details col-sm-6 col-sm-offset-3">
<h3>Oops! You are stuck at 403</h3>
<p>
Unfortunately the page you were looking for could not be found.
<br>
It may be temporarily unavailable, moved or no longer exist.
<br>
Check the URL you entered for any mistakes and try again.
<br>
<a class="btn btn-danger" href="/">
Return home
</a>
</p>
</div>
</div>
{% endblock %}