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.
37 lines
1.4 KiB
HTML
37 lines
1.4 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">
|
|
|
|
{% block content %}{% endblock content %}
|
|
|
|
{% include 'includes/scripts.html' %}
|
|
|
|
<!-- Specific Page JS goes HERE -->
|
|
{% block javascripts %}{% endblock javascripts %}
|
|
|
|
</body>
|
|
</html> |