Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
appseed-projects3 committed Apr 24, 2024
1 parent 5f82069 commit a30c1af
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions apps/templates/home/page-404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{% extends "layouts/base.html" %}

{% block title %} 404 Error {% endblock %}

<!-- Specific Page CSS goes HERE -->
{% block stylesheets %}{% endblock stylesheets %}

{% block content %}

<div class="content">
<div class="page-inner">
<div class="page-header">
<h4 class="page-title">Home</h4>
<ul class="breadcrumbs">
<li class="nav-home">
<a href="/">
<i class="flaticon-home"></i>
</a>
</li>
<li class="separator">
<i class="flaticon-right-arrow"></i>
</li>
<li class="nav-item">
<a href="#">Error 404</a>
</li>
</ul>
</div>
<div class="page-category">
<h2>Error 404</h2>
<h3 class="font-weight-light">
The page you’re looking for was not found.
</h3>
</div>
</div>
</div>

{% endblock content %}

<!-- Specific Page JS goes HERE -->
{% block javascripts %}{% endblock javascripts %}

0 comments on commit a30c1af

Please sign in to comment.