|
next_article.title |
|
next_article.title is a string variable containing the title of the article in the current category that comes chronologically after this one. This is empty if the next article has no title.
It can also be used as a boolean variable; it is true if it contains a value.
Example
This displays Next article: in boldface, followed by the title of the next article. If the article has no title, Next article: is followed by <Untitled>:
<strong>Next article:</strong>
{{if next_article.title}}
{{next_article.title}}
{{else}}
<Untitled>
{{/if}}