I have the following Holder and Page.
But when i load the page i get this message:
This page contains the following errors:
error on line 140 at column 8: Opening and ending tag mismatch: div line 0 and body
Below is a rendering of the page up to the first error.
I can't find the problem :| I noticed there is an extra </div> at the and of the page...
GamesHolder.ss
<div class="typography">
<% if Menu(2) %>
<% include SideBar %>
<div id="Content">
<% end_if %>
<% if Level(2) %>
<% include BreadCrumbs %>
<% end_if %>
<h2>$Title</h2>
$Content
<ul id="GamesList">
<% control Children %>
<li>
<div class="gamesname"><a href="$Link">$Title</a></div>
<div class="gamesphoto">$Photo.SetWidth(50)</div>
<div class="gamesdescription"><p>$Description</p></div>
</li>
<% end_control %>
</ul>
$PageComments
<% if Menu(2) %>
</div>
<% end_if %>
GamesPage.ss
<div class="typography">
<% if Menu(2) %>
<% include SideBar %>
<div id="Content">
<% end_if %>
<% if Level(2) %>
<% include BreadCrumbs %>
<% end_if %>
<h2>$Title</h2>
$Category
$Description
$Instructions
$Content
<div class="Tags">
Tags: $Tags
</div>
$PageComments
<% if Menu(2) %>
</div>
<% end_if %>