중요 static
파일은 DEBUG = true
일 때 의도한대로 쓸 수 있다.
mysite\mysite\settings.py
에서 DEBUG = true
로 되어 있는지 확인한다.
C:\Code\mysite\elections\static\elections
경로에 favicon 그림 파일 저장하기{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<link rel = "shortcut icon" type = "image/x-icon" href="{% static 'elections/favicon.ico' %}" />
<title>{% block title %}{% endblock %}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="{% url 'elections:home' %}">장고를 활용한 투표 사이트</a>
</div>
</nav>
{% block content %}{% endblock %}
</body>
</html>
새로고침 결과
Python으로 엑셀 사용(feat.openpyxl) (0) | 2018.06.29 |
---|---|
[Python] Zip Cracker (0) | 2018.04.09 |
[Pyhton] Django 결과보기/404오류/템플릿 상속/네비게이션바 (0) | 2017.08.16 |
[Python] Django url/결과 저장/결과 보기 (0) | 2017.08.14 |
[Python] 장고 shell/템플릿으로 html 불러오기/템플릿에 정보 체우기/MVC 패턴/여론조사 모델 (0) | 2017.08.11 |