hi all,

i 'm testing tutorial in
http://tapestry.apache.org/tapestry5/tapestry-core/guide/layout.html

in start.tml
_________________________________________________________________________

<html t:type="layout" xmlns:t="
http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>

   <h1>Welcome to the Nifty Web Application!</h1>

   <p>
        Would you like to <t:pagelink page="login">Log In</t:pagelink>?
   </p>
</html>
_________________________________________________________________________

after rendered.

it should be
________________________________________________________________________
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>
    <head>
        <title>My Nifty Web Application</title>
    </head>
    <body>
        <div class="nav-top">
            Nifty Web Application
        </div>
   <h1>Welcome to the Nifty Web Application!</h1>

   <p>
        Would you like to <t:pagelink page="login">Log In</t:pagelink>?
   </p>
        <div class="nav-bottom">
            (C) 2008 NiftyWebCo, Inc.
        </div>
    </body>
</html>
________________________________________________________________________

but, how come. after render. it become
________________________________________________________________________
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>
    <head>
        <title>My Nifty Web Application</title>
    </head>
    <body>

   <h1>Welcome to the Nifty Web Application!</h1>

   <p>
        Would you like to <t:pagelink page="login">Log In</t:pagelink>?
   </p>

    </body>
</html>
________________________________________________________________________


can some one help me?
Thank you.

Cyber

Reply via email to