[REAL Python – Django] – “Django – 장고에서 CSS, JS 파일 관리하기”

[REAL Python – Django] – “Django – 장고에서 CSS, JS 파일 관리하기”

2022/02/12 6:33 PM

Django에서 CSS, JS 파일 적용하기

이곳에서 장고에서 정적 파일 관리하는 방법을 소개해 주고 있습니다. https://docs.djangoproject.com/ko/4.0/howto/static-files/

settings.py 부분에서, 이미 그 경로를 static이라는 디렉토리 아래로 지정되어 있습니다. static이라는 디렉토리를 앱 폴더 아래에 만들어 줍니다.

만들어둔 폴더 아래에 여러 정적 파일들을 넣어주면 됩니다.

템플릿에 코드 첨부하기

템플릿에 static 파일을 사용하겠다는 의미인{% load static %} 이라는 코드를 추가해 주어야 합니다.

그 후 <link rel="stylesheet" href="{% static 'blog/bootstrap/bootstrap.min.css' %}" media="screen"> 와 같이 파일이 위치되어 있는 곳을 코드로 작성해 주면 정적 파일을 사용할 수 있습니다.

Leave A Comment

Thank you for visiting!

Thank you for visiting!

If you found this post helpful, please consider sharing and liking it. If you have any questions, feel free to leave a comment. 😎

If you’d like to contact me personally, please use the button below to send me an inquiry email. 📧