Skip to content
Snippets Groups Projects
Commit abbde68e authored by Eduardo Klosowski's avatar Eduardo Klosowski
Browse files

Adicionado template base do projeto

parent d88e40f8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -63,7 +63,9 @@ ROOT_URLCONF = '{{ project_name }}.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'DIRS': [
os.path.join(PROJECT_ROOT, 'templates'),
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
Loading
Loading
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment