DidouS

Timber Twig return if post date is equal-less-more

Dec 17th, 2020 (edited)
629
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.29 KB | None | 0 0
  1. {# conditional_my_date_field_equal #}
  2. {{ post.my_date_field == "now"|date('Ymd' ) ? '1' : '0' }}
  3.  
  4. {# conditional_my_date_field_less #}
  5. {{ post.my_date_field < "now"|date('Ymd' ) ? '1' : '0' }}
  6.  
  7. {# conditional_my_date_field_more #}
  8. {{ post.my_date_field > "now"|date('Ymd' ) ? '1' : '0' }}
Add Comment
Please, Sign In to add comment