Arquivos estáticos (staticfiles), STATIC_URL, STATICFILES_DIRS e load static

This commit is contained in:
Luiz Otávio
2023-04-21 09:14:54 -03:00
parent 33b24dfe03
commit dc90353228
4 changed files with 12 additions and 1 deletions

View File

@@ -1,9 +1,11 @@
<!DOCTYPE html>
{% load static %}<!DOCTYPE html>
<html lang="en">
<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" />
<title>Document</title>
<link rel="stylesheet" href="{% static 'home/css/blue.css' %}">
<link rel="stylesheet" href="{% static 'global/css/red.css' %}">
</head>
<body>

View File

@@ -0,0 +1,3 @@
body {
background: red;
}