Update templates to consistently use {% static %} instead of hard coding paths
[htsworkflow.git] / htsworkflow / frontend / templates / base_site.html
index 3cf8738e6266c3013b9c6d6e0341b757a6706f91..1c02752c40358038e670725b03a55a8c095c30bf 100644 (file)
@@ -1,10 +1,13 @@
-{% extends "admin/base.html" %}
+{% 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">HTS Workflow</h1>
+<h1 id="site-name">HTSWorkflow</h1>
 {% endblock %}
 
 {% block nav-global %}{% endblock %}