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.

23 line
632B

  1. {% macro callout_warning(message, title) %}
  2. {{ _self.callout('warning', message, title) }}
  3. {% endmacro %}
  4. {% macro callout_info(message, title) %}
  5. {{ _self.callout('info', message, title) }}
  6. {% endmacro %}
  7. {% macro callout_danger(message, title) %}
  8. {{ _self.callout('danger', message, title) }}
  9. {% endmacro %}
  10. {% macro callout_success(message, title) %}
  11. {{ _self.callout('success', message, title) }}
  12. {% endmacro %}
  13. {% macro callout(type, message, title) %}
  14. <div class="callout callout-{{ type }}">
  15. {% if title %}<h5>{{ title }}</h5>{% endif %}
  16. <p>{{ message }}</p>
  17. </div>
  18. {% endmacro %}