Computer Science/BackEnd

장고 | 장고 공식 문서 내용 정리 #1-7 Getting started : writing your first Django app, part 6

토마토. 2022. 9. 3. 22:31

첫 번째 장고 앱 작성하기, 6부 | 장고 문서 | 장고 (djangoproject.com)

 

Writing your first Django app, part 6 | Django documentation | Django

Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate

docs.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;
}