はじめに
こちらの記事の続きで書いています。
CSSファイルを作成
アプリケーション別のstaticディレクトリ内に、CSSファイルを作成します。
なければ作成してください。
./app/static/app/style.css
h1{
color: red;
font-size: 60px;
}
p{
color: #333;
font-size: 20px;
}
staticディレクトリの設定はこちらを参照して設定してください。
静的ファイルを静的公開ディレクトリにまとめる
INSTALLED_APPSに追加されたアプリケーションの静的ファイルをまとめてくれます。
./config/settings.py
INSTALLED_APPS = [
...略...
'app', # 追加
]
python manage.py collectstatic
コマンドでまとめます。
実行するかどうか確認がはいるので、yes
を選択します。
# python manage.py collectstatic
You have requested to collect static files at the destination
location as specified in your settings:
/code/static
This will overwrite existing files!
Are you sure you want to do this?
Type 'yes' to continue, or 'no' to cancel: yes
1 static file copied to '/code/static', 129 unmodified.
テンプレートにstaticを読ませる記述をする
./templates/index.html
{% load static%}
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{% static 'app/style.css' %}">
<title>{{ title }}</title>
</head>
<body>
<h1>{{ title }}</h1>
<p>{{ message }}</p>
</body>
</html>
{% load static%}
を記述することで、静的ディレクトリを参照できるようにします。
{% static 'app/style.css' %}
で、./static/app/stype.css
を読み込ませる設定になります。