In your templates, use the static template tag to build the URL for the given relative path using the configured STATICFILES_STORAGE. meaning
# Application definition
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'djangoapp',
'taggit',
'blog',
'forum',
'todo',
)