{% extends "base.html" %} {% load icons %} {% block title%}demo{% endblock %} {% block content %}
{% icon 'fas fa-user' %} The `user` icon from FontAwesome 6, using the default IconRenderer.
{% icon 'delete' size='lg' %} The `trash` icon from FontAwesome 4 in a larger size with Fontawesome4Renderer set and connected to the `delete` name in `settings.py`.
{% icon 'star' renderer='Bootstrap3Renderer' %} The `star` icon from Bootstrap 3, with the Bootstrap3Renderer explicitly set.
{% icon 'face' 'md-inherit' renderer='MaterialRenderer' %} The `face` icon from Material, with the MaterialRenderer explicitly set and an extra class to set the size.
{% icon 'wikimedia-download' renderer='ImageRenderer' %} The WikiMedia Download Icon, with the ImageRenderer explicitly set.
{% icon 'paperplane' %} A `paperplane` icon that is included in the source as SVG, using presets from `settings.py`.
{% icon 'feather' 'svg-icon-o' %} A `feather` icon that is included in the source as SVG, using presets from `settings.py`, with an extra class to render the outline.
{% icon 'no-pictures-please' %} A "no pictures please" stacked icon using the name and presets from `settings.py`.
{% endblock %}