orangesite/view/page.html

17 lines
426 B
HTML
Raw Normal View History

2020-03-25 00:49:19 +00:00
{% extends "base.html" %}
{% block body %}
{% include "navbar.html" %}
<!-- Page Content -->
2020-03-25 03:55:03 +00:00
<div class="container" id="pagebody">
2020-03-25 00:49:19 +00:00
<div class="row">
{% block content %}
<div class="col-lg-12 text-center">
<h1 class="mt-5">View Not Found</h1>
</div>
{% endblock %}
</div>
</div>
2020-03-25 16:11:31 +00:00
{% include "bodyfooter.html" %}
2020-03-25 00:49:19 +00:00
{% endblock %}