Hi all
Great CMS
I have a one page website. here what it's look like
index.php, I include many other page like home.php, menu.php, body.php ,contact.php, in the index page
I would like to have different section in couch cms it is possible.
I put <?php require_once('test/cms.php'); ?> and <?php COUCH::invoke(); ?> in every included php but does't seem to work what I want is to seperate my webpage in section so the user can modify each section.
any clue on how to do this ??
Great CMS
I have a one page website. here what it's look like
index.php, I include many other page like home.php, menu.php, body.php ,contact.php, in the index page
I would like to have different section in couch cms it is possible.
I put <?php require_once('test/cms.php'); ?> and <?php COUCH::invoke(); ?> in every included php but does't seem to work what I want is to seperate my webpage in section so the user can modify each section.
- Code: Select all
<html>
.... meta
.... header etc..
<body id="home" class="homepage">
<?php include('menu.php'); ?>
<?php include('sliders.php'); ?>
</body>
</html>
any clue on how to do this ??