Skip to content

Commit

Permalink
update syntax of importing css
Browse files Browse the repository at this point in the history
  • Loading branch information
hsiaoyi0504 committed May 11, 2018
1 parent 6074eef commit 7d77b2a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dashboard/templates/dashboard/blast_hist.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{% block head-scripts %}
<!-- CSS -->

<link rel="stylesheet" type="text/css" href="/static/dashboard/css/design.css">
<link rel="stylesheet" type="text/css" href="{% static 'dashboard/css/design.css' %}">
<!-- END CSS -->
{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion dashboard/templates/dashboard/clustal_hist.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{% block head-scripts %}
<!-- CSS -->

<link rel="stylesheet" type="text/css" href="/static/dashboard/css/design.css">
<link rel="stylesheet" type="text/css" href="{% static 'dashboard/css/design.css' %}">
<!-- END CSS -->
{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion dashboard/templates/dashboard/hmmer_hist.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{% block head-scripts %}
<!-- CSS -->

<link rel="stylesheet" type="text/css" href="/static/dashboard/css/design.css">
<link rel="stylesheet" type="text/css" href="{% static 'dashboard/css/design.css' %}">
<!-- END CSS -->
{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion dashboard/templates/dashboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{% block head-scripts %}
<!-- CSS -->

<link rel="stylesheet" type="text/css" href="../static/dashboard/css/design.css">
<link rel="stylesheet" type="text/css" href="{% static 'dashboard/css/design.css' %}">
<!-- END CSS -->
{% endblock %}

Expand Down

0 comments on commit 7d77b2a

Please sign in to comment.