Blog Entry
Retrieve the id of the blog entry.
{{ entry.id }}
Retrieve the title of the blog entry.
{{ entry.title }}
Retrieve the body of the blog entry.
{{ entry.body }}
Retrieve the parent of the blog entry.
{{ entry.parent }}
Retrieve the created_at date of the blog entry.
{{ entry.created_at }}
Retrieve the updated_at date of the blog entry.
{{ entry.updated_at }}
Retrieve the publish date of the blog entry.
{{ entry.publish_date }}
Retrieve the expiration date of the blog entry.
{{ entry.expire_date }}
Retrieve the url path of the blog entry.
{{ entry.url_path }}
Retrieve the uri (slug) of the blog entry.
{{ entry.uri }}
Check to see if the blog entry allows comments.
{{ entry.allow_comments? }}
Check to see comments are closed for a blog entry.
{{ entry.comments_closed? }}
Check to see comments are expired for a blog entry.
{{ entry.comments_expired? }}
Check to see if there is next blog entry in sequential order.
{{ entry.next? }}
Check to see if there is previous blog entry in sequential order.
{{ entry.previous? }}
Retrieve the next blog entry in sequential order.
{{ entry.next }}
Retrieve the previous blog entry in sequential order.
{{ entry.previous }}
Check to see if there is an author associated with a blog entry.
{{ entry.author? }}
Retrieve the author of the blog entry.
{{ entry.author }}
Check to see if there are breadcrumbs associated with the blog entry.
{{ entry.breadcrumbs? }}
Check to see if there are comments associated with the blog entry.
{{ entry.comments? }}
Check to see if there are tags associated with the blog entry.
{{ entry.tags? }}
Retrieve the comments count of the blog entry.
{{ entry.comments_count }}
Retrieve the breadcrumbs of the blog entry.
{{ entry.breadcrumbs }}
Retrieve the comments associated with the blog entry.
{{ entry.comments }}
Retrieve the tags associated with the blog entry.
{{ entry.tags }}