Quantcast
Channel: pattern matching
Viewing all articles
Browse latest Browse all 10

How to write “If string starts with” in Drupal 8 Twig templates

$
0
0

How to write “If string starts with” in Drupal 8 Twig templates

If you ever need to write a “string starts with” comparison in Drupal 8 Twig templates, I just used this approach in a node.html.twig template file and I can confirm that it works:

{% if uri starts with '/foo' %}

More accurately, what I did was to first get the URI for the current Drupal node, and then I perform that test:


Viewing all articles
Browse latest Browse all 10

Trending Articles