Removed meaningless assets/ folder within static. I believe its an artifact from an older Django version, but it needed to be removed to reduce clutter and use {% static %} tags.
51 lines
1.8 KiB
HTML
51 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
{% load static %}
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>
|
|
Django Adminator - {% block title %}{% endblock %} | AppSeed
|
|
</title>
|
|
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/bootstrap.css' %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/colours.css' %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/datepicker.css' %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/fontawesome.css' %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/themify-icons.css' %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/scrollbar.css' %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/adminator.css' %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/jquery.dataTables.min.css' %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/select2.min.css' %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static '/css/index.css' %}" />
|
|
|
|
<!-- Specific Page CSS goes HERE -->
|
|
{% block stylesheets %}{% endblock stylesheets %}
|
|
|
|
</head>
|
|
<body class="app">
|
|
|
|
<div id='loader' class="bg-body">
|
|
<div class="spinner"></div>
|
|
</div>
|
|
|
|
<script>
|
|
window.addEventListener('load', function load() {
|
|
const loader = document.getElementById('loader');
|
|
setTimeout(function() {
|
|
loader.classList.add('fadeOut');
|
|
}, 300);
|
|
});
|
|
</script>
|
|
|
|
{% block content %}{% endblock content %}
|
|
|
|
{% include 'includes/scripts.html' %}
|
|
|
|
<!-- Specific Page JS goes HERE -->
|
|
{% block javascripts %}{% endblock javascripts %}
|
|
|
|
</body>
|
|
</html>
|