Skip to content

Font Awesome packaged in a Django app to speed up new applications and deployment.

License

Notifications You must be signed in to change notification settings

benbacardi/django-font-awesome

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-font-awesome

Version Badge Downloads Badge Wheel Status Badge License Badge

Font Awesome packaged in a django app to speed up new applications and deployment.

Installation

Install using pip:

pip install django-font-awesome

Add to font_awesome to your INSTALLED_APPS in settings.py:

INSTALLED_APPS = (
    ...
    'font_awesome',
    ...
)

Run collectstatic to bring in the Font Awesome static files.

Usage

In the template where you require Font Awesome, load Django's static template tag library:

{% load static %}

Then use the static template tag to load the Font Awesome CSS:

<link rel='stylesheet' type='text/css' href='{% static 'css/font-awesome.css' %}' />

About

Font Awesome packaged in a Django app to speed up new applications and deployment.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages