0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Django ウェブページ(template)にスタイルを適用する

Posted at

はじめに

こちらの記事の続きで書いています。

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を読み込ませる設定になります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?