I'm currently using something like the HTML below as base page template for
my project. Which boils down to the one supported child section and three
panels for header, footer and navigation.

Now I'm wondering what's the current post-1.3 release stance on templating
for Wicket is. A while ago I've read something about adding support for
multiple child / extend areas. Is this still on the agenda? Can I do
anything to improve my approach to templating?

<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml";>
<head>
<title wicket:id="title"></title>
</head>
<body>
<table>
        <tbody>
                <tr>
                        <td colspan="2"></td>
                </tr>
                <tr>
                        <td></td>
                        <td><wicket:child /></td>
                </tr>
                <tr>
                        <td colspan="2"></td>
                </tr>
        </tbody>
</table>
</body>
</html>

-- 
View this message in context: 
http://www.nabble.com/Status-on-Templating-tp14755613p14755613.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to