Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Show link to 5.4 schema instead of 5.3

...

For the most part, these templates are standard HTML/XHTML; Tapestry extensions to ordinary markup are provided in the form of a Tapestry XML namespace (xmlns):

Code Block
languagexml
titleA template for a page
<html t:type="layout" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_34.xsd">
    <h1>Bonjour from HelloWorld component.</h1>
</html>
Section
 

We'll cover the specific content of templates shortly, but first a few details about connecting a component to its template.

...