1<?xml version="1.1" encoding="UTF-8"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
4    <xsl:import href="XSLInclude_header.xsl"/>
5
6    <xsl:template match="content">
7        <html>
8            <xsl:apply-templates/>
9        </html>
10    </xsl:template>
11
12    <xsl:template match="content/title">
13        <h1>
14            <xsl:apply-templates/>
15        </h1>
16    </xsl:template>
17
18    <xsl:include href="XSLInclude_footer.xsl"/>
19
20</xsl:stylesheet>