mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
87 lines
3.2 KiB
HTML
87 lines
3.2 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 href="{% static 'assets/css/loader.css' %}" rel="stylesheet" type="text/css" />
|
|
<script src="{% static 'assets/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 'assets/css/plugins.css' %}" rel="stylesheet" type="text/css" />
|
|
<script src="{% static 'plugins/notification/snackbar/snackbar.min.js' %}"></script>
|
|
<link href="{% static 'plugins/notification/snackbar/snackbar.min.css' %}" rel="stylesheet" type="text/css">
|
|
<!-- load any page wise jquery or stylesheet -->
|
|
|
|
{% block custom_js_css_link %}
|
|
{% endblock custom_js_css_link %}
|
|
</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 -->
|
|
{% include 'base/_items/top_nav.html' %}
|
|
<!-- TOP NAVBAR ENDS -->
|
|
|
|
<!-- BEGIN BREADCRUMB -->
|
|
{% include 'base/_items/breadcrumb.html' %}
|
|
<!-- END BREADCRUMB -->
|
|
|
|
<!-- BEGIN MAIN CONTAINER -->
|
|
<div class="main-container" id="container">
|
|
|
|
<div class="overlay"></div>
|
|
<div class="search-overlay"></div>
|
|
|
|
<!-- BEGIN SIDEBAR -->
|
|
{% include 'base/_items/sidebar.html' %}
|
|
<!-- END SIDEBAR -->
|
|
<!-- BEGIN CONTENT PART -->
|
|
<div id="content" class="main-content">
|
|
|
|
<div class="layout-px-spacing">
|
|
<div class="row layout-top-spacing">
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<script type="text/javascript">
|
|
Snackbar.show({
|
|
text: '{{ message }}',
|
|
pos: 'top-right'
|
|
});
|
|
</script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% block main_content %}
|
|
|
|
{% endblock main_content %}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<!-- END CONTENT PART -->
|
|
|
|
</div>
|
|
<!-- END MAIN CONTAINER -->
|
|
|
|
<script src="{% static 'assets/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 'assets/js/app.js' %}"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
App.init();
|
|
});
|
|
</script>
|
|
<script src="{% static 'plugins/highlight/highlight.pack.js' %}"></script>
|
|
<script src="{% static 'assets/js/custom.js' %}"></script>
|
|
{% block page_level_script %}
|
|
|
|
{% endblock page_level_script%}
|
|
</body>
|
|
</html>
|