Home
TeamSite
how to include html header as XSLT include
johnmukkad123
Hi friends,
i have two html files which is generated as teamsite output file for header and footer. i need to include these two seperate html files to my other presentation templates in place of header and footer using xslt tag. can you please help me to know how can i include these html files in my pt with xslt tag so that i can generate a single html output file along with header and footer and my PT ?
Find more posts tagged with
Comments
kalai
If server side include means use <xsl:comment>#include virtual="/includes/header.html</xsl:comment>
worries
<xsl:copy-of select="document('ExternalDocument.html')" />
this line will place the code of html inline while generating.in this method of coding if there is change in header or footer you need to regenerate all the pages and deploy which is not good way of implementing this.
Use SSI (server side includes)for this