12345678910111213141516171819202122232425262728293031323334353637383940 |
- <div{{ attributes }}>
- {{ title_prefix }}
- {% if label %}
- <h2{{ title_attributes }}>{{ label }}</h2>
- {% endif %}
- {{ title_suffix }}
- {% block content %}
- {{ content }}
- {% endblock %}
- </div>
|