<?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="feed.xml" -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
 <html>
    <head>
    <title>Travel Times Two Blog Feed</title>
    <link href="tt2-feed.css" rel="stylesheet" type="text/css"/>
    </head>
    <body>
       <h1>DJ and Marti's Travel Times Two Blog Feed</h1>
       <xsl:apply-templates select="." />
    </body>
 </html>
</xsl:template>
 <xsl:template match="channel">
 <xsl:apply-templates />
 </xsl:template>
 <xsl:template match="items">
 <xsl:for-each select="."/>
 </xsl:template>
 </xsl:stylesheet>