{{ enablePlugins('prettify') }} {% set title = "Badges" %} {% extends "layouts/application.html" %} {% block content %} {% include "shared/page-title.html" %}
Badges can notify you that there are new or unread messages or notifications. Add the new class to the badge to give it the background.

Collections

<div class="collection">
  <a href="#!" class="collection-item">Alan<span class="badge">1</span></a>
  <a href="#!" class="collection-item">Alan<span class="new badge">4 new</span></a>
  <a href="#!" class="collection-item">Alan</li>
  <a href="#!" class="collection-item">Alan<span class="badge">14</span></a>
</div>

Badges in Dropdown

<ul id="dropdown2" class="dropdown-content">
  <li><a href="#!">one<span class="badge">1</span></a></li>
  <li><a href="#!">two<span class="new badge">1 new</span></a></li>
  <li><a href="#!">three</a></li>
</ul>
<a class="btn dropdown-button" href="#!" data-activates="dropdown2">Dropdown<i class="mdi-navigation-arrow-drop-down right"></i></a>
{% endblock %}