장고에서는 css
나 js
같은 정적 파일들을 static
폴더에서 한번에 관리한다.
2. base.html에 static 링크하기
<head>
{% load static %}
<link rel="stylesheet" href="{% static "main.css" %}">
</head>
만약 개별 페이지 마다의 css 파일을 만들었다면 똑같이 static 폴더에 넣어준 뒤 각 템플릿에서 static으로 링크하면 된다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Document</title>
{% load static %}
<link rel="stylesheet" href="{% static "main.css" %}">
</head>
<body>
<h1>django 블로그</h1>
<div id="nav" class="nav">
<div class="icon">
<ul>
<li><a title="Home" href="{% url 'home' %}"><i class="fa fa-home "></i></a></li>
<li><a href="{% url 'home' %}"><i class="fa fa-search "></i></a></li>
<li><a href="{% url 'new' %}"><i class="fa fa-edit "></i></a></li>
</ul>
</div>
<div class="text">
<ul>
<li><a title="Home" href="{% url 'home' %}">홈</a></li>
<li><a href="{% url 'home' %}" >소개</a></li>
<li><a href="{% url 'new' %}" >새 글쓰기</a></li>
</ul>
</div>
</div>
{% block content %}
{% endblock %}
</body>
</html>
{% extends 'base.html' %}
{% block content %}
<a href="{% url 'new' %}">새 글쓰기</a>
{% for blog in blogs.all%}
<div>
<h1><a href="{% url 'detail' blog.id %}"> {{blog.title}} </a></h1>
<p> {{blog.created_at}}</p>
</div>
{%endfor%}
{% endblock %}