<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns="http://www.w3.org/TR/xhtml1/strict">
<!-- $Id$ -->
<xsl:output method="xml" 
  doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" 
  doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
  indent="yes"/>
<xsl:template match="/redirects">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>www.udel.edu - Redirects in /main</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" type="text/css" href="/main-redirect/main-redirect.css"/>
  </head>
  <body class="test">
    <div class="masthead3">
      <div class="mastheadbar3">
        <a class="left2" href="http://www.udel.edu/"><img src="http://www.udel.edu/images1/udlogo-smblue.jpg" alt="University of Delaware" width="442" height="64" border="0" align="left"/></a>
      </div>
    </div>
    <div id="message">
      Currently-active redirects of content that was located under the <b>/main</b> directory:<br/>
      <br/>
      <table class="dbdump">
        <tr><th>From URL</th><th>To URL</th></tr>
<xsl:for-each select="redirect">
        <!-- Created: <xsl:value-of select="created"/> -->
        <tr>
  <xsl:if test="position() mod 2 = 0">
    <xsl:attribute name="class">alternate</xsl:attribute>
  </xsl:if>
          <td><xsl:value-of select="from"/></td>
          <td><xsl:value-of select="to"/></td>
        </tr>
</xsl:for-each>
      </table>
    </div>
    <br/>
    <br/>
  </body>
</html>
</xsl:template>
</xsl:stylesheet>