{{ enablePlugins('prettify') }} {% set title = "Chips" %} {% extends "layouts/application.html" %} {% block content %} {% include "shared/page-title.html" %}
Chips can be used to represent small blocks of information. They are most commonly used either for contacts or for tags.

Contact Person Jane Doe
Tag

<div class="chip">
  <img src="assets/_con/images/user4-30x30.jpg" alt="Contact Person">
  Jane Doe
</div>
<div class="chip">
  Tag
  <i class="mdi-navigation-close material-icons"></i>
</div>
{% endblock %}