Sha256: 460b61a586582f19c0e2d98844df4b1ae72b3b7017b4f8ab327cd77d5c3abff7
Contents?: true
Size: 739 Bytes
Versions: 54
Compression:
Stored size: 739 Bytes
Contents
--- title: Various uses of the with_scope tag position: 8 --- {% assign begin_date = '2012-06-01 00:00:00' | parse_date_time %} {% assign end_date = '2012-06-10 23:59:59' | parse_date_time %} {% assign prices = '5.0,5.5' | split: ',' | map: 'to_f' %} {% with_scope date.gte: begin_date, date.lte: end_date, city: /Kansas/, state.ne: 'Illinois', tags: 'awesome', tags.nin: 'bad', price.in: prices, order_by: 'price.desc' %} events={{ contents.events.count }}. {% endwith_scope %} {% with_scope tags.in: 'awesome', order_by: 'price.desc' %} first event={{ contents.events.first.place }}. {% endwith_scope %} {% assign featured = false %} {% with_scope featured: featured %} bands={{ contents.bands.count }}. {% endwith_scope %}
Version data entries
54 entries across 54 versions & 1 rubygems