Update templates to consistently use {% static %} instead of hard coding paths
[htsworkflow.git] / htsworkflow / frontend / templates / base_site.html
1 {% extends "base.html" %}
2 {% load staticfiles %}
3 {% load i18n %}
4
5 <link type="text/css" rel="stylesheet" href="{% static "css/app.css" %}" />
6
7 {% block title %}{{ sitename }}{% endblock %}
8
9 {% block branding %}
10 <h1 id="site-name">HTSWorkflow</h1>
11 {% endblock %}
12
13 {% block nav-global %}{% endblock %}