How To Add a Simple Page
- Create a new file my_new_page.html in ./system/pages/ directory.
- Edit the file:
<h1>My New Page</h1> <p>My new page text.</p>
- Open file ./system/tpl/site_main.tpl
- Find HTML for left menu and add a link to your new page as follows:
<a href="index.php?page=my_new_page">My New Page</a>
- Open reload any page in the CTLF demo site and click on the new link "My New Page" in the left menu.
