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