> > instead of <t:pagelink ...> I'd rather use
You can do that as well: <a href="SomePage.tml" t:id="myLink">Click me</a> You're telling Tapestry to bind the link to a component with id myLink. You should setup the component and configure it in your Java code: @Component(parameters = { "page=Home" }) private PageLink myLink; The only thing the web-designers need to keep in mind is that they should leave the t:id attributes in your template. regards, Onno