Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ibexa_design_engine:
ibexa:
system:
site_group:
pagelayout: '@ibexadesign/pagelayout.html.twig'
page_layout: '@ibexadesign/pagelayout.html.twig'
design: my_design
content_view:
full:
Expand Down
1 change: 1 addition & 0 deletions docs/release_notes/ibexa_dxp_v5.0_deprecations.md
Original file line number Diff line number Diff line change
Expand Up @@ -647,6 +647,7 @@ The following service definitions have been removed:
| Old name | New name |
|:----|:----|
| `ibexa.system.*.database.*` | `ibexa.repositories` |
| `ibexa.system.*.pagelayout` | `ibexa.system.*.page_layout` |
| `ibexa.system.*.session_name` | `ibexa.system.*.session.name` |
| `ibexa.site_access.config.default.user_registration.group_id` | `ibexa.site_access.config.default.user_registration.group_remote_id` |
| `ezpublish_http_basic` | Use `http_basic` in `security.yml` directly. |
Expand Down
2 changes: 1 addition & 1 deletion docs/templating/templates/template_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ It may be a SiteAccess, a SiteAccess group, or one of the [generic configuration

## Page layout

`pagelayout` defines the general layout of the whole site.
`page_layout` defines the general layout of the whole site.
Other templates can [extend the page layout](#page-layout).

``` yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Create a `form_field.html.twig` file in `templates/fields/`:
```

Next, assign the template to the page.
In `config/packages/views.yaml`, at the same level as `pagelayout`, add:
In `config/packages/views.yaml`, at the same level as `page_layout`, add:

``` yaml
[[= include_file('code_samples/tutorials/page_tutorial/config/packages/views.yaml', 7, 9) =]]
Expand Down
Loading