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
Instead of fully relying on blocks and includes, you are provided with a twig global named `avanzu_admin_context` to store and retrieve particular values throughout the page rendering.
@@ -16,19 +16,19 @@ In order to make overriding some of the template regions easier, there are sever
<dd>Renders script tags. Located right before the closing `body`.
33
33
</dl>
34
34
@@ -85,7 +85,7 @@ The blocks defined in the layout in order of appearance. Some of them do contain
85
85
<dd>Renders the `searchPanel` component
86
86
87
87
<dt>avanzu_sidebar_nav
88
-
<dd>Renders the `menu` component _or_ includes `AvanzuAdminThemeBundle:Sidebar:knp-menu.html.twig` depending on wether the `knp_menu` is enabled or not.
88
+
<dd>Renders the `menu` component _or_ includes `@AvanzuAdminTheme/Sidebar/knp-menu.html.twig` depending on wether the `knp_menu` is enabled or not.
89
89
90
90
<dt>avanzu_page_title
91
91
<dd>Defines the page header inside `.content-header` *(and implicitly the `title` if you haven't changed the content of `avanzu_document_title`)*
@@ -94,16 +94,16 @@ The blocks defined in the layout in order of appearance. Some of them do contain
94
94
<dd>Defines the `small` portion of `.content-header`
95
95
96
96
<dt>avanzu_breadcrumb
97
-
<dd>Renders either the `breadcrumb` component or includes `AvanzuAdminThemeBundle:Breadcrumb:knp-breadcrumb.html.twig` based on your configuration.
97
+
<dd>Renders either the `breadcrumb` component or includes `@AvanzuAdminTheme/Breadcrumb/knp-breadcrumb.html.twig` based on your configuration.
98
98
99
99
<dt>avanzu_page_content
100
100
<dd>The main content area.
101
101
102
102
<dt>avanzu_footer
103
-
<dd>The main footer. Includes `AvanzuAdminThemeBundle:Partials:_footer.html.twig` by default.
103
+
<dd>The main footer. Includes `@AvanzuAdminTheme/Partials/_footer.html.twig` by default.
104
104
105
105
<dt>avanzu_control_sidebar
106
-
<dd>Includes `AvanzuAdminThemeBundle:Partials:_control-sidebar.html.twig` if it is enabled.
106
+
<dd>Includes `@AvanzuAdminTheme/Partials/_control-sidebar.html.twig` if it is enabled.
107
107
108
108
<dt>avanzu_javascripts
109
109
<dd>comes right after the `_scripts.html.twig` partial.
@@ -99,7 +99,7 @@ _**Notice:** since FALSE will not be considered a value by twig and therefor act
99
99
## infobox-widget
100
100
The infobox widget has no default configuration. The very nature of this widget type is to be distinguishable from each other hence, the configuration would be overridden anyways.
101
101
```twig
102
-
{% embed 'AvanzuAdminThemeBundle:Widgets:infobox-widget.html.twig' with {
102
+
{% embed '@AvanzuAdminTheme/Widgets/infobox-widget.html.twig' with {
0 commit comments