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
Just got stuck with the layout styles not applying, I found the solution so thought I'd share if others were having difficulty
On the example here:
{% include 'style-tags' %}
{% include 'script-tags', layout: 'theme' %}
Because the include tag is deprecated, I changed this to use the render tags, which prevent access to the value of layout, so, you also have to pass the value to style-tags:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Just got stuck with the layout styles not applying, I found the solution so thought I'd share if others were having difficulty
On the example here:
{% include 'style-tags' %}
{% include 'script-tags', layout: 'theme' %}
Because the include tag is deprecated, I changed this to use the render tags, which prevent access to the value of layout, so, you also have to pass the value to style-tags:
{% render 'style-tags', layout: 'theme' %}
{% render 'script-tags', layout: 'theme' %}
Beta Was this translation helpful? Give feedback.
All reactions