Django 2.1 시작 자습서(6)

1170 단어 Django
이 글은 css 파일과 그림을 추가하는 것을 설명할 것입니다.
css 파일 추가
polls 디렉토리에 static 디렉토리를 만들면 Django가 자동으로 이 디렉토리에서 정적 파일을 찾습니다.
polls/static/polls/style을 만듭니다.css는 다음과 같습니다.

li a {
    color: green;
}

polls/templates/polls/index.html


{% load static %}

{% static %}

http://localhost:8000/polls/ 。

polls/static/polls/imagesbackground.gif

polls/static/polls/style.css


body {
    background: white url("images/background.gif") no-repeat;
}

http://localhost:8000/polls/ 。

:https://docs.djangoproject.com/en/2.1/intro/tutorial06/

좋은 웹페이지 즐겨찾기