Tutorial_6:Static files
731 ワード
一、静的ファイル
static
をappのディレクトリの下、polls/static/
に作成します.templates
の作成と同様に、app名のフォルダを作成する必要があります.ファイルを下のpolls/static/polls/
に置きます.1.1 cssの追加
css
フォルダを作成し、style.css
を作成して書き込みます.li a {
color: green;
}
修正
index.html
{% load static %}
1.2画像の追加
フォルダ
polls/static/polls/images
を作成し、ここにbackground_001.jpg
を配置します.追加します.body {
background: white url("../images/background_001.jpg") no-repeat right bottom;
}