You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

infobox.html.twig 487B

123456789101112
  1. {% macro infobox(title, content, color, icon) %}
  2. <div class="info-box">
  3. <!-- Apply any bg-* class to to the icon to color it -->
  4. <span class="info-box-icon bg-{{ color }}"><i class="{{ icon }}"></i></span>
  5. <div class="info-box-content">
  6. <span class="info-box-text">{{ title }}</span>
  7. <span class="info-box-number">{{ content }}</span>
  8. </div>
  9. <!-- /.info-box-content -->
  10. </div>
  11. <!-- /.info-box -->
  12. {% endmacro %}