{% if Item %} {% assign metaTitle = Item.Title %} {% assign metaDescription = Item.Content | StripHtml | Truncate:150,'...' %} {# Try Thumbnail first #} {% assign metaImageGuid = Item | Attribute:'Thumbnail','RawValue' %} {# Fallback to Series Image #} {% if metaImageGuid == '' and Item.ParentItem != null %} {% assign metaImageGuid = Item.ParentItem | Attribute:'SeriesImage','RawValue' %} {% endif %} {# Fallback to a default image if still empty #} {% if metaImageGuid == '' %} {% assign metaImageGuid = 'your-default-guid-here' %} {% endif %} {% assign metaImageUrl = GlobalAttribute.PublicApplicationRoot | Append:'GetImage.ashx?Guid=' | Append:metaImageGuid %} {% assign metaUrl = 'Global' | Page:'Url' %} {% endif %}
Top