title

Previous page  First page  Next page

title is a string variable containing the title of the article. This is empty if the post is anonymous.

 

It can also be used as a boolean variable; it is true if it contains a value.

 

The title of the article is what the author enters into the Article Title text field in the Post Article or Edit Article page.

 

 

Example

 

The code below displays the title of the article if one exists or Untitled otherwise:

 

{{if title}}

{{title}}

{{else}}

Untitled

{{/if}}