Content Information

Retrieve the id of the piece of content.

{{ content.id }}

Retrieve the title of the piece of content.

{{ content.title }}

Retrieve the body of the piece of content.

{{ content.body }}

Retrieve the parent of the piece of content.

{{ content.parent }}

Retrieve the created_at date of the piece of content.

{{ content.created_at }}

Retrieve the updated_at date of the piece of content.

{{ content.updated_at }}

Retrieve the publish date of the piece of content.

{{ content.publish_date }}

Retrieve the expiration date of the piece of content.

{{ content.expire_date }}

Retrieve the url path of the piece of content.

{{ content.url_path }}

Check to see if the piece of content allows comments.

{{ content.allow_comments? }}

Check to see comments are closed for a piece of content.

{{ content.comments_closed? }}

Check to see comments are expired for a piece of content.

{{ content.comments_expired? }}

Check to see if there is next piece of content in sequential order.

{{ content.next? }}

Check to see if there is previous piece of content in sequential order.

{{ content.previous? }}

Retrieve the next piece of content in sequential order.

{{ content.next }}

Retrieve the previous piece of content in sequential order.

{{ content.previous }}

Check to see if there is an author associated with a piece of content.

{{ content.author? }}

Retrieve the author of the piece of content.

{{ content.author }}

Check to see if there are breadcrumbs associated with the piece of content.

{{ content.breadcrumbs? }}

Check to see if there are comments associated with the piece of content.

{{ content.comments? }}

Check to see if there are tags associated with the piece of content.

{{ content.tags? }}

Retrieve the comments count of the piece of content.

{{ content.comments_count }}

Retrieve the breadcrumbs of the piece of content.

{{ content.breadcrumbs }}

Retrieve the comments associated with the piece of content.

{{ content.comments }}

Retrieve the tags associated with the piece of content.

{{ content.tags }}