diff --git a/README.md b/README.md index df6bc5b..9160be7 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ wsgiref==0.1.2 ## Installation + ### 1. virtualenv / virtualenvwrapper You should already know what is [virtualenv](http://www.virtualenv.org/), preferably [virtualenvwrapper](http://www.doughellmann.com/projects/virtualenvwrapper/) at this stage. So, simply create it for your own project, where `projectname` is the name of your project: diff --git a/projectname/settings/default.py b/projectname/settings/default.py index fcfc8e4..921f2d2 100644 --- a/projectname/settings/default.py +++ b/projectname/settings/default.py @@ -20,7 +20,6 @@ TEMPLATE_DEBUG = DEBUG ALLOWED_HOSTS = ( - ) # SECURITY WARNING: keep the secret key used in production secret! diff --git a/templates/home.html b/templates/home.html index 8d9df41..9d9cc48 100755 --- a/templates/home.html +++ b/templates/home.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'base.html' %} {% block title %}Home Page{% endblock %}