.. include:: /Includes.rst.txt .. _feature-79622-new-default-layout-for-fluid-styled-content: ============================================================= Feature: #79622 - New default layout for Fluid Styled Content ============================================================= See :issue:`79622` Description =========== Previously there have been three layouts you could choose from when you were defining your own custom content elements or overriding an existing template. To provide a better maintainability and ease of use of overrides we are reducing these to a single layout that is named `Default` with all sections optional and fallbacks if the section is not set. Also we are introducing the "DropIn" concept. Structure --------- The `Default` layout consists of five predefined sections that can be utilized to shape the output for your content rendering. In most cases you will not have to care about other section than `Main`. The sections will be rendered in that exact ordering. - Before - Header - Main - Footer - After .. code-block:: html
DropIn ------ The sections `Before` and `After` are so called "DropIn" sections. DropIns have been introduced to be able to place additional functionality to all content elements without overriding layouts or templates. DropIns are basically placeholders/empty partials that are meant to be overridden if necessary. DropIn Locations: - Resources/Private/Partials/DropIn/Before/All.html - Resources/Private/Partials/DropIn/After/All.html Handling Optional Sections -------------------------- Since all sections are optional you do not need to reference them in your templates. All sections except the `Main` section have a fallback to a default behaviour if they are not set in the template. This is for example used to render the content element header. .. code-block:: html In some cases it can be useful to disable or override the default fallback of a section. For example if the HTML does not want to render the header at all. .. code-block:: html {data.bodytext} .. code-block:: html ... Basic Usage ----------- .. code-block:: html ... .. index:: Fluid, Frontend, ext:fluid_styled_content, TypoScript