Skip to content

Commit 5a55956

Browse files
authored
Radix theme twig call update (#729)
1 parent 5e22004 commit 5a55956

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

themes/custom/apigee_kickstart/templates/block/block--page-title-block--breadcrumbs.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
#}
77

8-
{% embed '@radix/block/block.twig' with {
8+
{% embed 'radix:block' with {
99
html_tag: 'li',
1010
block_utility_classes: [
1111
'breadcrumb-item',

themes/custom/apigee_kickstart/templates/block/block--page-title-block.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Template for the page title block.
55
*/
66
#}
7-
{% embed '@radix/block/block.twig' with {
7+
{% embed 'radix:block' with {
88
html_tag: 'div',
99
block_utility_classes: [
1010
'bg-lighter',

themes/custom/apigee_kickstart/templates/block/block--system-branding-block.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
* Template for the branding block.
55
*/
66
#}
7-
{% include '@radix/block/block--system-branding-block.html.twig' with {
7+
{% include 'radix:block' with {
88
html_tag: 'div'
99
} %}

themes/custom/apigee_kickstart/templates/block/block--system-breadcrumb-block.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
#}
77

8-
{% embed '@radix/block/block.twig' with {
8+
{% embed 'radix:block' with {
99
html_tag: 'li'
1010
} %}
1111
{% block content %}

themes/custom/apigee_kickstart/templates/block/block--system-menu-block.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
{% set title_attributes = title_attributes.setAttribute('class', ['visually-hidden']) %}
99

10-
{% include '@radix/block/block.twig' with {
10+
{% include 'radix:block' with {
1111
html_tag: 'div',
1212
} %}

themes/custom/apigee_kickstart/templates/block/block--team-switcher.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Template for the Team switcher block.
55
*/
66
#}
7-
{% embed '@radix/block/block.twig' with {
7+
{% embed 'radix:block' with {
88
html_tag: 'div',
99
} %}
1010
{% block content %}

themes/custom/apigee_kickstart/templates/media/image.html.twig

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
* Template for an image field.
55
*/
66
#}
7-
{% include '@radix/image/image.twig' with {
8-
responsive: true,
9-
src: attributes.src,
10-
alt: attributes.alt,
11-
} %}
7+
{%
8+
include 'radix:image' with {
9+
image_attributes: attributes,
10+
responsive: true,
11+
}
12+
%}

0 commit comments

Comments
 (0)