<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:apply-templates select="location"/>
</xsl:template>
<xsl:template match="location">
<xsl:apply-templates select="info"/>
</xsl:template>
<xsl:template match="info">
<xsl:variable name="page" select="../@arg0"/>
<div>
<xsl:copy-of select="minipage/node()"/>
</div>
</xsl:template>
</xsl:stylesheet>
