mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
88 lines
3.1 KiB
HTML
88 lines
3.1 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="https://fonts.googleapis.com/css?family=Quicksand:400,500,600,700&display=swap" 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>
|
|
<script src="{% static 'assets/js/loader.js' %}"></script>
|
|
<link href="{% static 'plugins/notification/snackbar/snackbar.min.css' %}" rel="stylesheet" type="text/css">
|
|
<link href="{% static 'assets/css/elements/breadcrumb.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 class="sidebar-noneoverflow">
|
|
<!-- TOP NAVBAR BEGIN -->
|
|
{% include 'base/_items/top_nav.html' %}
|
|
<!-- TOP NAVBAR ENDS -->
|
|
<!-- BEGIN MAIN CONTAINER -->
|
|
<div class="main-container" id="container">
|
|
|
|
<!-- BEGIN CONTENT PART -->
|
|
<div id="content" class="main-content">
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<script type="text/javascript">
|
|
Snackbar.show({
|
|
text: '{{ message }}',
|
|
pos: 'top-right',
|
|
{% if message.tags == 'error'%}
|
|
actionTextColor: '#fff',
|
|
backgroundColor: '#e7515a'
|
|
{% endif %}
|
|
});
|
|
</script>
|
|
{% endfor %}
|
|
{% endif %}
|
|
<div class="main-container">
|
|
<div class="container-fluid">
|
|
<nav class="breadcrumb-one mb-3" aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
{% block breadcrumb_title %}
|
|
{% endblock breadcrumb_title %}
|
|
</ol>
|
|
</nav>
|
|
<div class="row">
|
|
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
|
{% block main_content %}
|
|
|
|
{% endblock main_content %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- END CONTENT PART -->
|
|
{% include 'base/_items/modal.html' %}
|
|
</div>
|
|
<!-- END MAIN CONTAINER -->
|
|
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.6.0.min.js"
|
|
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
|
|
crossorigin="anonymous"></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();
|
|
});
|
|
$('.mt-container').each(function(){ const ps = new PerfectScrollbar($(this)[0]); });
|
|
</script>
|
|
<script src="{% static 'assets/js/custom.js' %}"></script>
|
|
{% block page_level_script %}
|
|
|
|
{% endblock page_level_script%}
|
|
</body>
|
|
</html>
|