Move the global static files to a dedicated subdirectory

This commit is contained in:
Rodolphe Breard 2018-06-02 13:38:47 +02:00
parent dafb3e20dd
commit aa691e7d2e
27 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
html,body {
background: url("/static/images/website_khaganat_bg_v7.jpg") no-repeat center fixed;
background: url("/static/khaganat/images/website_khaganat_bg_v7.jpg") no-repeat center fixed;
font-family: "Verdana","Arial","Helvetica",sans-serif;
color: #222;
}

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 162 KiB

View file

@ -4,12 +4,12 @@
<!-- Begin bootstrap headers -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="stylesheet" href="{% static "bootstrap/4.0.0-beta.3/css/bootstrap.min.css" %}" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" />
<link rel="stylesheet" href="{% static "khaganat/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" %}" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" />
<!-- End bootstrap headers -->
<!-- Begin global headers -->
<link rel="shortcut icon" href="{% static "images/favicon.ico" %}" />
<link rel="stylesheet" href="{% static "css/khaganat.css" %}" />
<link rel="shortcut icon" href="{% static "khaganat/images/favicon.ico" %}" />
<link rel="stylesheet" href="{% static "khaganat/css/khaganat.css" %}" />
<!-- End global headers -->
<!-- Begin custom headers -->
@ -23,8 +23,8 @@
<div class="container" id="main-content">
{% block content %}{% endblock %}
</div>
<script src="{% static "jquery-3.2.1.min.js" %}"></script>
<script src="{% static "bootstrap/4.0.0-beta.3/js/bootstrap.bundle.min.js" %}"></script>
<script src="{% static "js/khaganat.js" %}"></script>
<script src="{% static "khaganat/jquery-3.2.1.min.js" %}"></script>
<script src="{% static "khaganat/bootstrap/4.0.0-beta.3/js/bootstrap.bundle.min.js" %}"></script>
<script src="{% static "khaganat/js/khaganat.js" %}"></script>
</body>
</html>