{% if PageParameter.Item %} {% for Item in Items %}
{% assign seriesImageGuid = Item | Attribute:'SeriesImage','RawValue' %}

{{ Item.Title }}

{{ Item.StartDateTime | Date:'M/d/yyyy' }} {% if Item.StartDateTime != Item.ExpireDateTime %} - {{ Item.ExpireDateTime | Date:'M/d/yyyy' }} {% endif %}

{{ Item.Content }}

In This Series

    {% capture childIds %} {% for child in Item.ChildItems %} Id == {{ child.ChildContentChannelItem.Id }}{% unless forloop.last %} || {% endunless %} {% endfor %} {% endcapture %} {% contentchannelitem where:'{{ childIds }}' sort:'StartDateTime desc' %} {% assign sortedItems = contentchannelitemItems | Sort:'StartDateTime desc' %} {% for message in contentchannelitemItems %}
  1. {{ message.Id }}: {{ message.Title }} - {{ message.StartDateTime }}
  2. {% endfor %} {% endcontentchannelitem %}
{% endfor %}