-
[Python] settings.py에 static folder 연결해서 html에서 사용하기Python/Django 2021. 11. 20. 20:51
# settings.py import os BASE_DIR = Path(__file__).resolve().parent.parent STATIC_DIR = os.path.join(BASE_DIR, 'static') STATICFILES_DIRS = [ STATIC_DIR, ]
<!DOCTYPE html> {% load static %} <body> <h1>Hi this is my favourite image</h1> <img src="{% static 'images/tree.jpeg'%}" alt="Uh Oh, didn't show"> </body>
'Python > Django' 카테고리의 다른 글
[Python] Django urls.py, views.py 초기 세팅 (0) 2021.11.30 [Python] TypeError: __init__() missing 1 required positional argument: 'on_delete' (0) 2021.11.30 [Python] views에서 html로 context 넘겨서 사용하기 (0) 2021.11.20 [Python] settings.py에서 Templates DIR 상대경로로 설정하기 (0) 2021.11.20 [Python] Django 초기 설정, manage.py 명령어 모음 (0) 2021.11.20