Symfony 1.4 Layout footer glitch: Footer div is echoed out with $sf_content
- by Parijat Kalia
I have a very simple Layout for my application. A header, the main content, and a footer. Semantically, they are rendered like this:
<body>
<div id = "header"> </div>
<div id = "content"> </div>
<div id = "footer"> </div>
</body>
The corresponding CSS is very basic as well:
#header{
width:100%;…