Layout and view

When I use this line in layout:




<?php echo $content; ?>



It generates some lines, which I dont need:


<div class="container">

	<div id="content">

...

</div><!-- content -->

</div>

How can I disable it? I’d like to give names of blocks myself

Are you using the files from the auto-generated skeleton application? This markup is not added explicitly by the controller to the $content variable. If you are using the skeleton/example app files, you may be using views/layouts/column2.php as a nested layout. This file explicitly has markup like that you are referencing, and may be what you want to change.

You are right, thanks a lot. I paid no attention to this file.