{% extends "base.html" %} {% load icons %} {% block content %}
{% icon 'user' %} The `user` icon from FontAwesome
{% icon 'delete' size='lg' %} The `trash` icon from FontAwesome in a larger size, connected to the `delete` name in `settings.py`.
{% icon 'star' renderer='Bootstrap3Renderer' %} The `star` icon from Bootstrap3, with the renderer explicitly set
{% icon 'face' 'md-inherit' renderer='MaterialRenderer' %} The `face` icon from Material, with the renderer explicitly set and an extra class to set the size
{% icon 'icons8-icons8-48' renderer='ImageRenderer' %} The `icons8` icon from Icons8, with the renderer explicitly set
{% icon 'paperplane' %} A `paperplane` icon that is included in the source as SVG
{% icon 'feather' 'svg-icon-o' %} A `feather` icon that is included in the source as SVG, with an extra class to render the outline
{% endblock %}