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 @@
*/
#}

{% embed '@radix/block/block.twig' with {
{% embed 'radix:block' with {
html_tag: 'li',
block_utility_classes: [
'breadcrumb-item',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Template for the page title block.
*/
#}
{% embed '@radix/block/block.twig' with {
{% embed 'radix:block' with {
html_tag: 'div',
block_utility_classes: [
'bg-lighter',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
* Template for the branding block.
*/
#}
{% include '@radix/block/block--system-branding-block.html.twig' with {
{% include 'radix:block' with {
html_tag: 'div'
} %}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
#}

{% embed '@radix/block/block.twig' with {
{% embed 'radix:block' with {
html_tag: 'li'
} %}
{% block content %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

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

{% include '@radix/block/block.twig' with {
{% include 'radix:block' with {
html_tag: 'div',
} %}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Template for the Team switcher block.
*/
#}
{% embed '@radix/block/block.twig' with {
{% embed 'radix:block' with {
html_tag: 'div',
} %}
{% block content %}
Expand Down
11 changes: 6 additions & 5 deletions themes/custom/apigee_kickstart/templates/media/image.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
* Template for an image field.
*/
#}
{% include '@radix/image/image.twig' with {
responsive: true,
src: attributes.src,
alt: attributes.alt,
} %}
{%
include 'radix:image' with {
image_attributes: attributes,
responsive: true,
}
%}
Loading