Fragment
A reusable UI component for Liferay’s Page Builder (drag-and-drop).
- Build consistent banners, cards, etc., without coding per page.
- Empower content editors to compose pages visually.
Implementation
Section titled “Implementation”Create a Fragment
Section titled “Create a Fragment”blade create -t fragment promo-bannerAdd HTML/CSS
Section titled “Add HTML/CSS”<div class="promo-banner" style="background: ${configuration.bgColor}"> <h1>${configuration.heading}</h1> <p>${configuration.text}</p></div>Configure Editable Fields
Section titled “Configure Editable Fields”{ "fields": { "heading": { "type": "text", "defaultValue": "Special Offer!" }, "bgColor": { "type": "color", "defaultValue": "#FF5733" } }}Use Cases
Section titled “Use Cases”- Marketing Banners: Highlight promotions.
- FAQ Sections: Reusable accordions.