Django 2.1入門チュートリアル(六)
1181 ワード
ここではcssファイルと画像の追加について説明します.
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/images , background.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/
li a {
color: green;
}
polls/templates/polls/index.html :
{% load static %}
{% static %} 。
http://localhost:8000/polls/ 。
の
polls/static/polls/images , background.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/