Use iconic.app icons in your Django and Jinja templates.
Project description
Use iconic.app icons in your Django and Jinja templates.
Requirements
Python 3.6 to 3.9 supported.
Django 2.2 to 3.2 supported.
This was forked from adamchainz/heroicons <https://github.com/adamchainz/heroicons>
Are your tests slow? Check out Adam’s book Speed Up Your Django Tests which covers loads of best practices so you can write faster, more accurate tests.
Usage
The iconic package supports both Django templates and Jinja2 templates. Follow the appropriate guide below.
Django templates
Install with python -m pip install iconic[django].
Add to your INSTALLED_APPS:
INSTALLED_APPS = [ ..., 'iconic', ..., ]
Now in your templates you can load the template library with:
{% load iconic %}
This provides a tag to render <svg> icons: iconic_icon. The tags take these arguments:
name, positional: the name of the icon to use. You can see the icon names on the iconic.app grid.
size, keyword: an integer that will be used for the width and height attributes of the output <svg> tag. Defaults to the icons’ designed size: 24.
Any number of keyword arguments. These will be added as HTML attributes to the output <svg> tag. Underscores in attribute names will be replaced with dashes, allowing you to define e.g. data- attributes.
For example, to render an outline “announcement” icon, at 48x48, with some extra CSS classes and a data attribute “controller”, you would write:
{% iconic_icon "announcement" size=48 class="h-4 w-4 inline" data_controller="academia" %}
Jinja templates
Install with python -m pip install iconic[jinja].
Adjust your Jinja Environment to add the global function iconic, imported from iconic.jinja. For example:
from iconic.jinja import iconic_icon from jinja2 import Environment env = Environment() env.globals.update( { "iconic_icon": iconic_icon, } )
Now in your templates you can call those two functions, which render <svg> icons corresponding to the two icon styles in the set. The functions take these arguments:
name, positional: the name of the icon to use. You can see the icon names on the iconic.app grid.
size, keyword: an integer that will be used for the width and height attributes of the output <svg> tag. Defaults to the icons’ designed size: 24.
Any number of keyword arguments. These will be added as HTML attributes to the output <svg> tag. Underscores in attribute names will be replaced with dashes, allowing you to define e.g. data- attributes.
For example, to render an outline “announcement” icon, at 48x48, with some extra CSS classes and a data attribute “controller”, you would write:
{% iconic("announcement", size=48, class="h-4 w-4 inline", data_controller="academia") %}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file iconic-1.0.0.tar.gz
.
File metadata
- Download URL: iconic-1.0.0.tar.gz
- Upload date:
- Size: 69.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f43b33f191fcdc947d2adaef1cc91fe0c21a2da378621409da695112bfe9fb7 |
|
MD5 | 7d8530194963d993bad40ddef87cb549 |
|
BLAKE2b-256 | ef645ab6fbe9dec5a467e0195907e96993605c460f15dd3723a1254784d1cebd |
File details
Details for the file iconic-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: iconic-1.0.0-py3-none-any.whl
- Upload date:
- Size: 66.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 620c7f29ba689c7e93a5d5a48a608d2a9c054ecbe8c0693b52c086bfd248d2d7 |
|
MD5 | 6f278c191ce5b86f243b05b0a8375137 |
|
BLAKE2b-256 | 8a6abd235c3457e50d10d2498d49b2d27f74fdba76bc16e54b533e43e124263c |