diff options
Diffstat (limited to 'papillon/templates/base.html')
-rw-r--r-- | papillon/templates/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/papillon/templates/base.html b/papillon/templates/base.html index 16c9f14..c235686 100644 --- a/papillon/templates/base.html +++ b/papillon/templates/base.html @@ -1,8 +1,8 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +{% load staticfiles %}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> - <link rel="stylesheet" href="{{media_url}}styles.css" /> + <link rel="stylesheet" href="{% static 'styles.css' %}" /> <title>{% block title %}Papillon{% endblock %}</title> {% block fullscript %}{% endblock %} </head> |