$entry.data
| Property | Description | Usage | Output |
| entry_id | primary id of the entry | {$entry.data.entry_id} | 41 |
| _entry_type_id | id of an entry type. | {$entry.data._entry_type_id} | 34 |
| _title | title of the entry. | {$entry.data._title} | Documentation of RBCMS |
| _keywords | meta keywords used for search engines. | {$entry.data._keywords} | RBCMS, documenting, news |
| _short_description | contains the small descriptions of the entry | {$entry.data._short_description} | Documentation of the site is under way. |
| _date_created | date when the entry was created. | {$entry.data._date_created} | 2008-04-18 09:54:36 see also, smarty date formatting. |
| _folder | folder path to the entry starting from root. | {$entry.data._folder} | _entries/News/2008/04/41/. Docume ... |
| slabel | singular label | {$entry.data.slabel} | News |
| plabel | plural label | {$entry.data.plabel} | News |
Sample Usage: (e.g. news )
<div id="contents">
<h3>{$entry.data._title}</h3>
<i>{$entry.data._date_created|date_format}</i> -
<b>{$archive->get_entry_type($entry.data._entry_type_id)}</b><br/>
{$entry.content}
</div>
HTML Source Output
<div id="contents">
<h3>Documentation of RBCMS</h3>
<i>Apr 18, 2008</i> - <b>News</b><br>
Documentation of the site is under way.
</div>