Skip to content

Commit

Permalink
fix: correct paths to vendor libs
Browse files Browse the repository at this point in the history
  • Loading branch information
engineervix committed Oct 13, 2020
1 parent 731f050 commit b50a628
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<title>404 Not Found</title>

<!-- Bootstrap Core CSS -->
{% raw %}<link href="{% static 'vendors/bootstrap/dist/css/bootstrap.min.css' %}" rel="stylesheet">
{% raw %}<link href="{% static 'vendors/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
<!-- FontAwesome CSS -->
<link rel="stylesheet" type="text/css" href="{% static 'vendors/fontawesome/css/all.min.css' %}">{% endraw %}

Expand Down Expand Up @@ -113,10 +113,10 @@ <h2>What can I do?</h2>
<!--Scripts-->
{% raw %}
<!-- jQuery -->
<script type="text/javascript" src="{% static 'vendors/jquery/dist/jquery.min.js' %}"></script>
<script type="text/javascript" src="{% static 'vendors/jquery/jquery.min.js' %}"></script>

<!-- Bootstrap Core JavaScript -->
<script type="text/javascript" src="{% static 'vendors/bootstrap/dist/js/bootstrap.bundle.min.js' %}"></script>{% endraw %}
<script type="text/javascript" src="{% static 'vendors/bootstrap/js/bootstrap.bundle.min.js' %}"></script>{% endraw %}

</body>

Expand Down

0 comments on commit b50a628

Please sign in to comment.