Files
2020-06-27 18:42:37 +02:00
..
2018-03-12 13:23:44 +01:00
2020-05-16 07:24:36 -03:00
2018-03-12 13:23:44 +01:00
2018-03-12 13:23:44 +01:00
2018-03-12 13:23:44 +01:00

{$page.title} — displays the title of the page

{$page.desc} — displays the page description

{$page.content} — displays the contents of the page

{$pages} — array with the data of all pages

{$pages.ID} — array with the data of specific page

If you want to make a "one page" website, you can use the loop:

{loop: $pages}
    <h1>{$value.title}</h1>
    <p>{$value.content}</p>
{/loop}