Welcome to django-fa’s documentation!¶
Quickstart¶
Installation¶
Install using pip:
pip install django-fa
Alternatively, you can install download or clone this repo and call
pip install -e .
.Add to INSTALLED_APPS in your
settings.py
:'fa',
Use the font-awesome tag library in your templates
Example template¶
{% load font_awesome %} {# Load CSS #} {% fa_css %} {# Display an icon #} {% fa 'fa-shield' %}
Authors¶
Origin¶
Original version written by Dylan Verheul at Zostera.
Thanks to everybody that contributed pull requests, ideas, issues, comments and kind words.
Contributors¶
- Dylan Verheul (https://github.com/dyve)
1.0.0 - in development¶
- Rename fa to icon
- No longer automatically prepend fa to icon parameters
- Drop support for Django 1.9
0.4.0 - 2017-05-26¶
- Default to to Font Awesome 4.7.0
- Fix Travis CI and unit tests
- Fix ReadThe Docs Documentation
0.3.0 - 2016-02-26¶
- Default to Font Awesome 4.4.5
- Removed warnings for Django 1.10
0.2.0 - 2015-08-11¶
- Font Awesome 4.4.0 is default now
- 100% coverage in tests
0.1.1 - 2015-07-26¶
- First publication on GitHub