first comit
This commit is contained in:
96
templates/includes/base.html
Normal file
96
templates/includes/base.html
Normal file
@@ -0,0 +1,96 @@
|
||||
<!--
|
||||
=========================================================
|
||||
* Argon Dashboard 2 - v2.0.4
|
||||
=========================================================
|
||||
|
||||
* Product Page: https://www.creative-tim.com/product/argon-dashboard
|
||||
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
|
||||
* Licensed under MIT (https://www.creative-tim.com/license)
|
||||
* Coded by Creative Tim
|
||||
|
||||
=========================================================
|
||||
|
||||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
-->
|
||||
{% load static %}
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="{% static 'img/apple-icon.png' %}">
|
||||
<link rel="icon" type="image/png" href="{% static 'img/favicon.png' %}">
|
||||
<title>
|
||||
TMHR
|
||||
</title>
|
||||
<!-- Fonts and icons -->
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" />
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
|
||||
<!-- Nucleo Icons -->
|
||||
<link href="{% static 'css/nucleo-icons.css' %}" rel="stylesheet" />
|
||||
<link href="{% static 'css/nucleo-svg.css' %}" rel="stylesheet" />
|
||||
|
||||
<link rel="stylesheet" href="{% static 'fonts/icomoon/style.css' %}" />
|
||||
<link rel="stylesheet" href="{% static 'css/rome.css' %}">
|
||||
<link rel="stylesheet" href="{% static 'css/style.css' %}">
|
||||
|
||||
|
||||
<!-- Font Awesome Icons -->
|
||||
<script src="https://kit.fontawesome.com/42d5adcbca.js" crossorigin="anonymous"></script>
|
||||
<link href="{% static 'css/nucleo-svg.css' %}" rel="stylesheet" />
|
||||
<!-- CSS Files -->
|
||||
<link id="pagestyle" href="{% static 'css/argon-dashboard.css' %}" rel="stylesheet" />
|
||||
|
||||
{% block styles %}
|
||||
{% endblock styles %}
|
||||
</head>
|
||||
|
||||
<body class="g-sidenav-show bg-gray-100">
|
||||
|
||||
<div class="position-absolute w-100 min-height-300 top-0" style="background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2340&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); background-position-y: 50%;">
|
||||
<span class="mask bg-primary opacity-6"></span>
|
||||
</div>
|
||||
{% include 'includes/sidebar.html' %}
|
||||
<div class="main-content position-relative max-height-vh-100 h-100">
|
||||
{% include 'includes/navbar.html' %}
|
||||
{% block content %}
|
||||
{% endblock content %}
|
||||
<div class="toast-container position-fixed bottom-0 end-0 p-3">
|
||||
<div id="toast-alert" class="toast" role="alert" aria-live="assertive" aria-atomic="true">
|
||||
<div class="toast-header text-dark">
|
||||
<strong class="me-auto " id='toast-title'></strong>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="toast-body" id='toast-message'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer pt-3 pb-2 ">
|
||||
<div class="container-fluid">
|
||||
<div class="row align-items-center justify-content-lg-between">
|
||||
<div class="col-lg-6 mb-lg-0 mb-4">
|
||||
<div class="copyright text-center text-sm text-muted text-lg-start">
|
||||
© <script>
|
||||
document.write(new Date().getFullYear())
|
||||
</script>,
|
||||
made with <i class="fa fa-heart"></i> by
|
||||
<a href="https://www.themainframe.co.uk" class="font-weight-bold" target="_blank">Joshua Kirkcaldy</a>
|
||||
for a better web.
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<ul class="nav nav-footer justify-content-center justify-content-lg-end">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
{% include 'includes/scripts.html' %}
|
||||
{% block scripts %}
|
||||
{% endblock scripts %}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user