django favicon.ico 장고 파비콘불러오기


파비콘이 있는 경로는

/home/ubuntu/static/www/favicon.ico


불러올 html 템플릿에 링크를 걸어준다

{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="/static/www/favicon.ico">


+ Recent posts