Update templates to consistently use {% static %} instead of hard coding paths
[htsworkflow.git] / htsworkflow / frontend / templates / base_site.html
index 7381f62c645b5585a0fb02c07c58a6cba377ff23..1c02752c40358038e670725b03a55a8c095c30bf 100644 (file)
@@ -1,7 +1,8 @@
 {% extends "base.html" %}
+{% load staticfiles %}
 {% load i18n %}
 
-<link type="text/css" rel="stylesheet" href="/static/css/app.css" />
+<link type="text/css" rel="stylesheet" href="{% static "css/app.css" %}" />
 
 {% block title %}{{ sitename }}{% endblock %}