|
- {% macro infobox(title, content, color, icon) %}
- <div class="info-box">
- <!-- Apply any bg-* class to to the icon to color it -->
- <span class="info-box-icon bg-{{ color }}"><i class="{{ icon }}"></i></span>
- <div class="info-box-content">
- <span class="info-box-text">{{ title }}</span>
- <span class="info-box-number">{{ content }}</span>
- </div>
- <!-- /.info-box-content -->
- </div>
- <!-- /.info-box -->
- {% endmacro %}
|