[Zope] ZPT Equivilent of <dtml-var standard_html_header>

Tom Nixon tom.nixon@aim23.com
Fri, 22 Mar 2002 17:33:18 -0000


Read the ZPT chapter in the Zope book. You need to learn about macros
(METAL)

...or as a quick fix, try:

<span tal:replace="structure here/standard_html_header">

T.

> Hi.  I'm diving into ZPT today, and and can't seem to figure out this 
> seemingly simple thing.  
> 
> In a Zope Page Template document, what is the ZPT equivilent of 
> 
> <dtml-var standard_html_header>
> 
> This:
> 
> <p>
> <span tal:replace="here/standard_html_header">
> standard_html_header
> </span>
> </p>
> 
> works, but spits out only raw html instead of rendered html.  What 
> am I doing wrong?