You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ibexa_products/ibexa_headless.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,7 @@ Several features help end users collaborate on the content, such as:
142
142
-[[= product_name_headless =]]'s content tree has several actions available directly on its items. For example, no need to open a content to hide it, you can do it directly from the content tree.
143
143
- An Image Editor offers to crop and flip images. When serving the image in various context, you can even set a focal point to indicate to automated cropping which part of the image should be kept.
144
144
- A Digital Asset Management (DAM) helps you crawl through your image resources to use and reuse them in your content. And a DAM connector allows you to search for images hosted on third party DAM servers.
145
+
-[AI Actions](ai_actions_guide.md) help you automate time-consuming editorial tasks.
Copy file name to clipboardExpand all lines: docs/tutorials/page_and_form_tutorial/1_get_a_starter_website.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,24 +62,24 @@ Edit it to remove the Image field that has a Content Relation (ezobjectrelation)
62
62
63
63
First, to remove the welcome page, go to `config/packages/` and delete the `ibexa_welcome_page.yaml` file.
64
64
65
-
Place the [`pagelayout.html.twig`](https://github.com/ibexa/documentation-developer/blob/master/code_samples/tutorials/page_tutorial_starting_point/templates/pagelayout.html.twig) and [`pagelayout_menu.html.twig`](https://github.com/ibexa/documentation-developer/blob/master/code_samples/tutorials/page_tutorial_starting_point/templates/pagelayout_menu.html.twig) files in the `templates` folder.
65
+
Place the [`pagelayout.html.twig`](https://github.com/ibexa/documentation-developer/blob/4.6/code_samples/tutorials/page_tutorial_starting_point/templates/pagelayout.html.twig) and [`pagelayout_menu.html.twig`](https://github.com/ibexa/documentation-developer/blob/4.6/code_samples/tutorials/page_tutorial_starting_point/templates/pagelayout_menu.html.twig) files in the `templates` folder.
66
66
Create a new folder, called `full`, in `templates`.
- create a `css` folder and add the following stylesheet: [`style.css`](https://github.com/ibexa/documentation-developer/blob/master/code_samples/tutorials/page_tutorial_starting_point/assets/css/style.css) to it
82
-
- add the [`header.jpg`](https://github.com/ibexa/documentation-developer/blob/master/code_samples/tutorials/page_tutorial_starting_point/assets/images/header.jpg) file to the `assets/images` folder
81
+
- create a `css` folder and add the following stylesheet: [`style.css`](https://github.com/ibexa/documentation-developer/blob/4.6/code_samples/tutorials/page_tutorial_starting_point/assets/css/style.css) to it
82
+
- add the [`header.jpg`](https://github.com/ibexa/documentation-developer/blob/4.6/code_samples/tutorials/page_tutorial_starting_point/assets/images/header.jpg) file to the `assets/images` folder
83
83
84
84
In the `webpack.config.js` file in the project root folder, add the following line after `Encore.addEntry('app', './assets/app.js');`:
85
85
@@ -98,7 +98,7 @@ php bin/console cache:clear
98
98
99
99
Compiling assets with Webpack Encore is explained in [the beginner tutorial](3_customize_the_front_page.md#configuring-webpack).
100
100
101
-
In the `src` folder create a `QueryType` subfolder and add [`QueryType/MenuQueryType.php`](https://github.com/ibexa/documentation-developer/blob/master/code_samples/tutorials/page_tutorial_starting_point/src/QueryType/MenuQueryType.php) to it.
101
+
In the `src` folder create a `QueryType` subfolder and add [`QueryType/MenuQueryType.php`](https://github.com/ibexa/documentation-developer/blob/4.6/code_samples/tutorials/page_tutorial_starting_point/src/QueryType/MenuQueryType.php) to it.
102
102
103
103
This file takes care of displaying the top menu (for more information, see [the documentation](content_queries.md#query-types)).
Copy file name to clipboardExpand all lines: docs/tutorials/page_and_form_tutorial/2_prepare_the_landing_page.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ First create a new file for layout configuration, `config/packages/ibexa_fieldty
67
67
The `sidebar` (line 3) is the internal key of the layout.
68
68
`name` (line 5) is displayed in the interface when the user selects a layout.
69
69
The `thumbnail` (line 7) points to an image file that is shown when creating a new landing page next to the name.
70
-
Use the [supplied thumbnail file](https://github.com/ibexa/documentation-developer/blob/master/code_samples/tutorials/page_tutorial_starting_point/public/assets/images/layouts/sidebar.png) and place it in the `public/assets/images/layouts/` folder.
70
+
Use the [supplied thumbnail file](https://github.com/ibexa/documentation-developer/blob/4.6/code_samples/tutorials/page_tutorial_starting_point/public/assets/images/layouts/sidebar.png) and place it in the `public/assets/images/layouts/` folder.
71
71
72
72
The `template` (line 8) points to the Twig file containing the template for this layout.
Copy file name to clipboardExpand all lines: docs/tutorials/page_and_form_tutorial/4_create_a_custom_block.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ At this point the new custom block is ready to be used.
48
48
You're left with the last cosmetic changes.
49
49
First, the new Block has a broken icon in the **Page blocks** toolbox in page mode.
50
50
This is because you haven't provided this icon yet.
51
-
If you look back to the YAML configuration, you can see the icon file defined as `random_block.svg` (line 4). Download [the provided file](https://github.com/ibexa/documentation-developer/blob/master/code_samples/tutorials/page_tutorial_starting_point/public/assets/images/blocks/random_block.svg) and place it in `public/assets/images/blocks`.
51
+
If you look back to the YAML configuration, you can see the icon file defined as `random_block.svg` (line 4). Download [the provided file](https://github.com/ibexa/documentation-developer/blob/4.6/code_samples/tutorials/page_tutorial_starting_point/public/assets/images/blocks/random_block.svg) and place it in `public/assets/images/blocks`.
52
52
53
53
Finally, add some styling for the new block. Add the following to the end of the `assets/css/style.css` file:
0 commit comments