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 | |
parent | f3a97a063b4158ecd803555c36a7807a02133781 (diff) |
Adds my custom.scss file and new boostrap compiled files
Diffstat (limited to 'pyblackbird_cc/templates')
-rw-r--r-- | pyblackbird_cc/templates/base.html | 5 | ||||
-rw-r--r-- | pyblackbird_cc/templates/resources/resource_list.html | 3 |
2 files changed, 5 insertions, 3 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> diff --git a/pyblackbird_cc/templates/resources/resource_list.html b/pyblackbird_cc/templates/resources/resource_list.html index e8f2a5c..353539e 100644 --- a/pyblackbird_cc/templates/resources/resource_list.html +++ b/pyblackbird_cc/templates/resources/resource_list.html @@ -107,7 +107,7 @@ </div> <p class="card-text my-3">{{ resource.description }}</p> <a href="{% url 'resources:resource_detail' resource_id=resource.id %}" - class="btn btn-secondary">More...</a> + class="btn btn-primary">Details</a> </div> </div> {% endfor %} @@ -119,3 +119,4 @@ </div> </div> {% endblock content %} +</div> |