Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleLayout.tml (a template for a Layout component)
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_34.xsd">
    <head>
        <title>My Nifty Web Application</title>
    </head>
    <body>
        <div class="nav-top">
            Nifty Web Application
        </div>

        <t:body/>

        <div class="nav-bottom">
            (C) 2012 NiftyWebCo, Inc.
        </div>
    </body>
</html>

...

Code Block
languagexml
titleWelcome.tml (the template for a page)
<html t:type="layout" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_04.xsd">

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

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

...

Code Block
languagexml
titleAdminLayout.tml
<html t:type="commonLayout" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_04.xsd">

    <h1>Administrative Functions</h1>

    <t:body/>

</html>

...

Code Block
languagexml
titleLayout.tml (a template for a Layout component)
<!DOCTYPE html>
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_34.xsd">
    <head>
        <meta charset="UTF-8" />
        <title>$title<title>${title} - NiftyWebCo, Inc</title>
        <style type="text/css">
            <t:delegate to="style" />
        </style>
    </head>
    <body>
        <div class="nav-top">
            Nifty Web Application
        </div>

        <h1>${title}</h1>

        <t:alerts/>
   
        <t:body/>

        <div class="nav-bottom">
            (C) 2012 NiftyWebCo, Inc.
        </div>
    </body>
</html>

...

Code Block
languagexml
titleUserList.tml
<html t:type="layout" title="List of Users"
    xmlns:t="http://tapestry.apache.org/schema/tapestry_5_34.xsd"
    xmlns:p="tapestry:parameter">
<p:style>
    TD.profile { background: url('${backgroundImage}') }
</p:style>

<div>
    Imagine a table of user account information here.
</div>

</html>

...