Skip to content

Commit

Permalink
fix: correct the fontawesome css reference in 404 template
Browse files Browse the repository at this point in the history
Change to `vendors/@fortawesome/fontawesome-free/css/all.min.css`
Previous value was based on the older `grunt` setup, and was giving the following error:
  - `Missing staticfiles manifest entry for 'vendors/fontawesome/css/all.min.css'`
  • Loading branch information
engineervix committed Nov 28, 2021
1 parent 6d0e33d commit c705e83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<!-- Bootstrap Core CSS -->
{% 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 %}
<link rel="stylesheet" type="text/css" href="{% static 'vendors/@fortawesome/fontawesome-free/css/all.min.css' %}">{% endraw %}

<style>
/* Error Page Inline Styles */
Expand Down

0 comments on commit c705e83

Please sign in to comment.