index.html 509 B

1234567891011121314
  1. Place all custom page files here....
  2. make sure to start page contents like so:
  3. <pre>
  4. &lt;?php
  5. // This is a check to make sure organizr is setup already...
  6. if (file_exists('config' . DIRECTORY_SEPARATOR . 'config.php')) {
  7. // All variables need to start with $customPage .... Make sure to change Simple to any word (First Letter needs to be capital)... i.e. $customPageNewish
  8. // Also make sure to escape single quotes
  9. $customPageSimple = '
  10. &lt;h1&gt;THIS IS JUST A TEST&lt;/h1&gt;
  11. ';
  12. }
  13. </pre>