I'm wanting to access the 'published_at' date of a collection within a liquid template.
The Wiki references the following attributes here, that does not include 'published_at': http://wiki.shopify.com/Collection
I can access the 'published_at' date when using the Shopify API gem, using the following:
collection = ShopifyAPI::SmartCollection.find(1234567)
Returns:
<ShopifyAPI::SmartCollection:XXXXXXXXXXXX
@attributes={
"body_html"=>"",
"handle"=>"homepage",
"id"=>1234567,
"published_at"=>"2012-11-01T07:26:30-04:00",
"sort_order"=>"manual",
"template_suffix"=>nil,
"title"=>"Homepage",
"updated_at"=>"2012-11-01T07:26:30-04:00",
"rules"=>[
#<ShopifyAPI::Rule:XXXXXXXXXXXX
@attributes={
"column"=>"tag",
"relation"=>"equals",
"condition"=>"week1"
},
@prefix_options={},
@persisted=false>
]
},
@prefix_options={},
@persisted=true>
Is there a way to access the same information via liquid or are these end points unavailable internally?