diff options
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> |