첫 번째 장고 앱 작성하기, 6부 | 장고 문서 | 장고 (djangoproject.com)
첫 장고 앱 만들기 6
장고에서는 JavaScript, CSS를 정적 파일(Static file)이라고 부른다.
앱 느낌 커스터마이즈하기
static/polls/style.css 파일을 생성하고
li a {
color:green;
}
이 내용을 index.html 파일에 반영해준다.
{%load static%}
<link rel="stylesheet" href="{% static 'polls/style.css' %}">
배경 이미지 추가하기
li a {
color:green;
}
body {
background: white url("images/background_image.jpg") no-repeat;
}