I need to display something so long as the last url segment is not one of a few different words. I’ve got it working with the following but is there a cleaner way to write it?:
{if last_segment != "work_for_us" AND last_segment != "for_candidates"}I was hoping something like this would work:
{if last_segment != "work_for_us"|"for_candidates"}The issue is that I will have quite a few segments, and if I insert a line-break in the 1st load of code it stops working. Thanks