diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-15 11:50:18 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-15 11:50:18 +0100 |
commit | a6e798d147ed5f8c653def9fa4bcb1e50f7687c8 (patch) | |
tree | b427471ad1a9f6e7e319761757e324a8ad6b98c4 /pyblackbird_cc/templates/base.html | |
parent | f3a97a063b4158ecd803555c36a7807a02133781 (diff) |
Adds my custom.scss file and new boostrap compiled files
Diffstat (limited to 'pyblackbird_cc/templates/base.html')
-rw-r--r-- | pyblackbird_cc/templates/base.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyblackbird_cc/templates/base.html b/pyblackbird_cc/templates/base.html index 503ab89..e3dfa46 100644 --- a/pyblackbird_cc/templates/base.html +++ b/pyblackbird_cc/templates/base.html @@ -27,7 +27,8 @@ <!-- Your stuff: Third-party CSS libraries go here --> <!-- This file stores project-specific CSS --> <link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap.css' %}" /> - <link href="{% static 'css/project.css' %}" rel="stylesheet" /> + <link rel="stylesheet" href="{% static 'css/custom.css' %}" /> + <link rel="stylesheet" href="{% static 'css/project.css' %}" /> {# <link rel="stylesheet" href="{% static "css/wrapper.css" %}" type="text/css" media="screen" charset="utf-8" />#} {% endblock css %} <!-- Le javascript @@ -43,7 +44,7 @@ <!-- Your stuff: Third-party javascript libraries go here --> <!-- place project specific Javascript in this file --> <script defer src="{% static 'js/project.js' %}"></script> - <script scr="{% static "bootstrap/js/bootstrap.js" %}"></script> + <script src="{% static "bootstrap/js/bootstrap.js" %}"></script> <script src="{% static "js/htmx.min.js" %}"></script> {% endblock javascript %} </head> |