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.

10 lines
417B

  1. {% macro infobox(title, content, color, icon, button=null) %}
  2. {% embed '@LcSov/adminlte/embed/infobox.html.twig' %}
  3. {% block color %}{{ color }}{% endblock %}
  4. {% block icon %}{{ icon }}{% endblock %}
  5. {% block title %}{{ title }}{% endblock %}
  6. {% block content %}{{ content|raw }}{% endblock %}
  7. {% block button %}{{ button }}{% endblock %}
  8. {% endembed %}
  9. {% endmacro %}