mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-22 09:44:55 +02:00
80 lines
2.6 KiB
HTML
80 lines
2.6 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
|
|
<title> {% block title %} {% endblock title %} </title>
|
|
<link rel="icon" type="image/x-icon" href="{% static 'img/favicon.ico' %}"/>
|
|
<link href="{% static 'css/loader.css' %}" rel="stylesheet" type="text/css" />
|
|
<script src="{% static 'js/loader.js' %}"></script>
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700" rel="stylesheet">
|
|
<link href="{% static 'bootstrap/css/bootstrap.min.css' %}" rel="stylesheet" type="text/css" />
|
|
<link href="{% static 'css/plugins.css' %}" rel="stylesheet" type="text/css" />
|
|
<style>
|
|
.layout-px-spacing {
|
|
min-height: calc(100vh - 166px)!important;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="load_screen"> <div class="loader"> <div class="loader-content">
|
|
<div class="spinner-grow align-self-center"></div>
|
|
</div></div></div>
|
|
|
|
<!-- TOP NAVBAR BEGIN -->
|
|
{% block navbar %}
|
|
{% include 'base/_items/top_nav.html' %}
|
|
{% endblock navbar %}
|
|
<!-- TOP NAVBAR ENDS -->
|
|
|
|
<!-- BEGIN BREADCRUMB -->
|
|
{% block breadcrumb %}
|
|
{% include 'base/_items/breadcrumb.html' %}
|
|
{% endblock breadcrumb %}
|
|
<!-- END BREADCRUMB -->
|
|
|
|
<!-- BEGIN MAIN CONTAINER -->
|
|
<div class="main-container" id="container">
|
|
|
|
<div class="overlay"></div>
|
|
<div class="search-overlay"></div>
|
|
|
|
<!-- BEGIN SIDEBAR -->
|
|
{% block sidebar %}
|
|
{% include 'base/_items/sidebar.html' %}
|
|
{% endblock sidebar %}
|
|
<!-- END SIDEBAR -->
|
|
|
|
<!-- BEGIN CONTENT PART -->
|
|
<div id="content" class="main-content">
|
|
<div class="layout-px-spacing">
|
|
|
|
<div class="row layout-top-spacing">
|
|
{% block content %}
|
|
|
|
{% endblock content %}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<!-- END CONTENT PART -->
|
|
|
|
</div>
|
|
<!-- END MAIN CONTAINER -->
|
|
|
|
<script src="{% static 'js/libs/jquery-3.1.1.min.js' %}"></script>
|
|
<script src="{% static 'bootstrap/js/popper.min.js' %}"></script>
|
|
<script src="{% static 'bootstrap/js/bootstrap.min.js' %}"></script>
|
|
<script src="{% static 'plugins/perfect-scrollbar/perfect-scrollbar.min.js' %}"></script>
|
|
<script src="{% static 'js/app.js' %}"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
App.init();
|
|
});
|
|
</script>
|
|
<script src="{% static 'js/custom.js' %}"></script>
|
|
</body>
|
|
</html>
|