Changes to make it work with django 1.11 and python3
[sommitrealweird.git] / templates / base.html
index 552a510eb35e57fc0b77880f4470fb49d7a04f6a..eacc07e432fe9f08b4a0da82afccfb555e9f6afb 100644 (file)
@@ -3,7 +3,8 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
     <head>
         <title>{% block title %}{{ title }}{% endblock %}</title>
-        <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}style/main.css" />
+       {% load static %}
+        <link rel="stylesheet" type="text/css" href="{% get_media_prefix %}style/main.css" />
         {% block extrahead %}{% endblock %}
     </head>
     <body>