{% docstring %} Section widgets are represented as a `
` block inside which their content is rendered. Additionally, sections can have "sub-widgets" passed as a list of items. Each item points to a file relative to the original section file. This is useful to represent things like grids. Attributes: class: (optional) The class(es) to apply to the section style: (optional) The style(s) to apply to the section items: (optional) a list of markdown files without the extention, usually hidden (starting with `_`). Those will be rendered inside the section. {% enddocstring %} {% if section.anchor %} {% endif %} {% if section.header %}

{{section.header}}

{% endif %}
{{yield}} {% for item in section.items|load_items:object %} {{item.content|markdown}} {% endfor %}