Djangoでcssが反映されません
Djangoのcssファイルが反映されません.
ご教授お願い致します.
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static
'class_review/style.css' %}" />
<title>CLASS REVIEW</title>
</head>
<meta charset="utf-8"/>
<body>
<h1>CLASS REVIEW</h1>
<h2>
<form action="{% url 'class_review:index' %}" method="post">
{% csrf_token %}
<input type="text" name="search_word" size="40">
<input type="submit" value="search">
</form></h2>
<br/>
<p>{% for one_review in all_review %}<!--全角スペースを入れる-->
{{one_review.name}}<br/>
{% endfor %}</p>
</body>
</html>
style.css
h1 {color: red;}
ディレクトリ
sns
|--static
|--style.css
--templates
|--index.html
Error内容
[14/Oct/2017 17:11:32] "GET /static/class_review/style.css HTTP/1.1" 404 103