django-octicons 1.0.2

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangoocticons 1.0.2

django-octicons

Template tags for Django to use GitHub Octicons.
Installation
Grab it from PyPI using pipenv (or pip):
$ pipenv install django-octicons

Install the app in your project:
# settings.py

INSTALLED_APPS = [
# other apps
'octicons',
]

Usage
Load the tag library in your HTML template:
{% load octicons %}

And then, you can use the icons like this:
<a class="btn btn-sm" href="#url" role="button">
{% octicon "eye" %}
Watch
</a>

You can also pass any required attributes:
<a class="btn btn-sm" href="#url" role="button">
{% octicon "thumbsup" height="60" class="large" %}
Confirm Purchase
</a>

All attributes passed will be added as HTML attributes to the SVG element
of the icon.
Styling
You should add the following in your styles:
.octicon {
display: inline-block;
vertical-align: text-top;
fill: currentColor;
}

The class octicon will be present in all icons. You are free to style it however you want.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.