<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  <xsl:output method="xml" />

  <xsl:template match="/content">
    <content>
      <group>
        <xsl:apply-templates select="group"/>
      </group>
    </content>
  </xsl:template>

  <xsl:template match="group">
      
      <xsl:attribute name="image">
        <xsl:value-of select="image" />
      </xsl:attribute>

      <xsl:attribute name="poet">
        <xsl:value-of select="poet" />
      </xsl:attribute>

      <xsl:attribute name="text_english">
        <xsl:value-of select="text_english" />
      </xsl:attribute>
    
      <xsl:attribute name="text_french">
        <xsl:value-of select="text_french" />
      </xsl:attribute>
    
      <xsl:attribute name="text_spanish">
        <xsl:value-of select="text_spanish" />
      </xsl:attribute>

      <xsl:attribute name="poem">
        <xsl:value-of select="poem" />
      </xsl:attribute>
      
  </xsl:template>

</xsl:stylesheet> 

