diff options
author | 2024-02-23 15:27:44 +0800 | |
---|---|---|
committer | 2024-02-23 15:27:44 +0800 | |
commit | 9d59478cbd6db8660d974d5df28b312dc28e6216 (patch) | |
tree | ab9196dd3bbc12ea222301466dbf5d0af636f4a8 /pydis_site/templates | |
parent | Merge pull request #1228 from python-discord/resources_config_ready (diff) |
Move from Font Awesome Kit to static files
- Lemon's fa kit (free plan) had been used till now which had
limitations such as total number of views that we've long exceeded
- This gives more control on the static assets to use
- Allows showing icons in development
Diffstat (limited to 'pydis_site/templates')
-rw-r--r-- | pydis_site/templates/base/base.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pydis_site/templates/base/base.html b/pydis_site/templates/base/base.html index e497298a..0eb10975 100644 --- a/pydis_site/templates/base/base.html +++ b/pydis_site/templates/base/base.html @@ -26,7 +26,8 @@ {% bulma %} {% bulma 'dark' include_js=False %} - {% font_awesome %} + <link href="{% static 'fontawesome/css/all.min.css' %}" rel="stylesheet" type="text/css"> + <link rel="stylesheet" href="{% static "css/base/base.css" %}"> {% block head %}{% endblock %} |