Skip to content

Commit

Permalink
Merge pull request #27 from l0rb/master
Browse files Browse the repository at this point in the history
static
  • Loading branch information
interrogator committed Dec 4, 2019
2 parents c0a17e0 + 1e3b4e6 commit 67f1a52
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions buzzword/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<meta charset="utf-8">
<title>{% block title %}buzzword{% endblock %}</title>
<!-- tab icon -->
<link rel="shortcut icon" type="image/png" href="{{ STATIC_URL }}static/favicon.ico"/>
<link rel="shortcut icon" type="image/png" href="{% static "favicon.ico" %}"/>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="{{ STATIC_URL }}static/bootstrap.min.css"/>
<!-- Optional theme <link rel="stylesheet" href="{{ STATIC_URL }}static/bootstrap-theme.min.css"/> -->
<link rel="stylesheet" href="{% static "bootstrap.min.css" %}"/>
<!-- Optional theme <link rel="stylesheet" href="{% static "bootstrap-theme.min.css" %}"/> -->
</head>
<body>
{% block body %}
Expand All @@ -18,9 +18,9 @@
{% endblock %}
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="{{ STATIC_URL }}static/jquery.min.js"/>
<script src="{{ STATIC_URL }}static/popper.min.js"/>
<script src="{{ STATIC_URL }}static/bootstrap.min.js"/>
<script src="{% static "jquery.min.js" %}"/>
<script src="{% static "popper.min.js" %}"/>
<script src="{% static "bootstrap.min.js" %}"/>
{% endblock body %}
</body>
</html>

0 comments on commit 67f1a52

Please sign in to comment.