Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. /*
  2. * Conditional Addition of classes using Ternary Operator
  3. */
  4.  
  5. {% set classes = [
  6. is_front ? 'front-page', 'internal-page'
  7. has_parent ? 'child-item',
  8. attributes.hasClass('test-class') ? 'another-class',
  9. ] %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement