A Plone add-on for managing reusable Volto sections stored in the Plone registry.
- Store section configurations in Plone registry
- REST API endpoints for CRUD operations on sections
- Frontend integration for loading saved sections
- Support for section templates and variations
- Add
collective.volto.sections
to yourrequirements.txt
orsetup.py
- Install with pip:
pip install collective.volto.sections
- Add it to your
INSTALLED_ADDONS
ininstance.yaml
- Restart Plone
- Install the add-on through the Plone control panel
The add-on provides REST API endpoints at:
GET /@sections
- List all sectionsPOST /@sections
- Create a new sectionGET /@sections/{id}
- Get a specific sectionPUT /@sections/{id}
- Update a sectionDELETE /@sections/{id}
- Delete a section
Section data is stored in the Plone registry under the key collective.volto.sections.sections
.