I am trying to save this page template but it keeps giving me this error. I don't see any html error. Here's the error message: Compilation failed TAL.HTMLParser.HTMLParseError: EOF in middle of construct, at line 7, column 5 And here is my code. <html> <head> <title tal:content="template/title">The title</title> </head> <body><p> <table border="0" cellpadding="0" cellspacing="0"> <tr><td colspan="100%> <img src="images/header.jpg" width="760" height="122"> </td></tr> <tr> <td><dtml-var 4golf_menu></td> <td>testing content </td> </tr> </table> <dtml-var standard_html_footer> </p> </body> </html>
you cannot use DTML tags inside page templates. jens On Thursday, Sep 5, 2002, at 14:21 US/Eastern, sim wrote:
I am trying to save this page template but it keeps giving me this error. I don’t see any html error. Here’s the error message:
Compilation failed
TAL.HTMLParser.HTMLParseError: EOF in middle of construct, at line 7, column 5
And here is my code.
<html>
<head>
<title tal:content="template/title">The title</title>
</head>
<body><p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="100%> <img src="images/header.jpg" width="760" height="122"> </td></tr>
<tr>
<td><dtml-var 4golf_menu></td>
<td>testing content </td>
</tr>
</table>
<dtml-var standard_html_footer>
</p>
</body>
</html>
Hi sim,
I am trying to save this page template but it keeps giving me this error. I don't see any html error. Here's the error message:
I can :)
Compilation failed TAL.HTMLParser.HTMLParseError: EOF in middle of construct, at line 7, column 5
And here is my code.
line 1: > <html> line 2: > <head> line 3: > <title tal:content="template/title">The title</title> line 4: > </head> line 5: > <body><p> line 6: > <table border="0" cellpadding="0" cellspacing="0"> line 7: > <tr><td colspan="100%> <img src="images/header.jpg" width="760" ^^^^^^^^^^^^^^^^^^^^^! Miss closing quote of the colspan attr!
participants (3)
-
Clemens Klein-Robbenhaar -
Jens Vagelpohl -
sim