{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="app-card p-5 text-center shadow-sm">
|
|
<h1 class="page-title mb-4">404<br><span class="font-weight-light">Page Not Found</span></h1>
|
|
<div class="mb-4">
|
|
Sorry, we can't find the page you're looking for.
|
|
</div>
|
|
<a class="btn app-btn-primary" href="index.html">Go to home page</a>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|