How To Add a Simple Page

  1. Create a new file my_new_page.html in ./system/pages/ directory.
  2. Edit the file:
    <h1>My New Page</h1>
    
    <p>My new page text.</p>
  3. Open file ./system/tpl/site_main.tpl
  4. 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>
  5. Open reload any page in the CTLF demo site and click on the new link "My New Page" in the left menu.