Arquivo settings.py
# ...
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
# ...
STATIC_URL = 'static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'setup/static')
]
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
# ...
Comando para reconhecer os arquivos estáticos do projeto: python manage.py collectstatic
Linha de código em Python nos arquivos .html
para carregarmos os arquivos estáticos utilizado em index.html
e imagem.html
{% load static %}
<!-- ... -->
<head>
<!-- ... -->
<link rel="stylesheet" href="{% static 'styles/style.css' %}">
</head>
<!-- e nas tags de acesso a diretório '/assets/' acrescentar em volta: {% static '/diretório/arquivo' %} -->
<body>
<img class="busca__icone" src="{% static '/assets/ícones/1x/search.png' %}" alt="ícone de search">
</body>