Update templates to consistently use {% static %} instead of hard coding paths
[htsworkflow.git] / htsworkflow / frontend / templates / base_site.html
index 7e80060d8b1f04338595b5c5ab78b56b7f15d10c..1c02752c40358038e670725b03a55a8c095c30bf 100644 (file)
@@ -1,10 +1,13 @@
 {% extends "base.html" %}
+{% load staticfiles %}
 {% load i18n %}
 
+<link type="text/css" rel="stylesheet" href="{% static "css/app.css" %}" />
+
 {% block title %}{{ sitename }}{% endblock %}
 
 {% block branding %}
-<h1 id="site-name" class="djangocss">HTSWorkflow</h1>
+<h1 id="site-name">HTSWorkflow</h1>
 {% endblock %}
 
 {% block nav-global %}{% endblock %}