feat: enable static file loading in base template
Introduced Django's static file loader tag in the base HTML template to support loading of CSS, JavaScript, and other static files throughout the application. This change is essential for integrating frontend assets seamlessly, enhancing the functionality and user experience of the site. This modification allows for a more structured and organized way of managing static content, improving the development workflow and making the site more maintainable and scalable.
This commit is contained in:
parent
9ff6278ba1
commit
337951f1da
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
<!-- templates/base.html -->
|
{% load static %}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
|
Loading…
Reference in a new issue