Files
tmhr/templates/includes/base_auth.html
2024-02-23 10:30:02 +00:00

63 lines
2.2 KiB
HTML

{% load static %}
<!--
=========================================================
* 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.
-->
<!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" />
<!-- 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="">
{% block content %}{% endblock content %}
<footer class="footer py-5">
<div class="container">
<div class="row">
<div class="col-8 mx-auto text-center mt-1">
<p class="mb-0 text-secondary">
Copyright © <script>
document.write(new Date().getFullYear())
</script> Joshua Kirkcaldy.
</p>
</div>
</div>
</div>
</footer>
{% include 'includes/scripts.html' %}
{% block scripts %}
{% endblock scripts %}
</body>
</html>