Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Twig redaction

Started by Muut Archive 10 years ago · 2 replies · 298 views
10 years ago

Hello grav

I wondered if someone could not tell how to make the following code pretty ? (less redondant...) Thanks in advance

TWIG
{% if page.header.background == 'honeycomb' %},{% include 'partials/background-honeycomb-svg.html.twig' %},{% endif %}
{% if page.header.background == 'chevrons' %},{% include 'partials/background-chevrons-svg.html.twig' %},{% endif %}
... etc...

I cannot get

TWIG
{% include 'partials/background-{{ page.header.background }}-svg.html.twig' %}

to work directly

10 years ago

Use

TWIG
{% include 'partials/background-' ~ page.header.background ~
 '-svg.html.twig' %}

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1367 9 years ago
Archive · by Muut Archive, 9 years ago
2 940 9 years ago
Archive · by Muut Archive, 9 years ago
2 4069 9 years ago
Archive · by Muut Archive, 9 years ago
1 2960 9 years ago
Archive · by Muut Archive, 9 years ago
3 1125 9 years ago