Project

General

Profile

1 10046 mecum
<?xml version="1.0"?>
2 10056 mecum
<xsl:stylesheet
3 10046 mecum
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 10056 mecum
  xmlns:gmd="http://www.isotc211.org/2005/gmd"
5
  xmlns:gco="http://www.isotc211.org/2005/gco"
6 10046 mecum
  version="1.0">
7 10056 mecum
8
  <xsl:template match="gmd:MD_Identifier">
9
    <xsl:apply-templates select="./gmd:code" />
10
  </xsl:template>
11
12
  <xsl:template match="gmd:MD_Keywords">
13
    <div><strong>Type:</strong>&#xa0;<xsl:value-of select="./gmd:type/gmd:MD_KeywordTypeCode/text()" /></div>
14
    <div><strong>Thesaurus:&#xa0;</strong><xsl:value-of select="./gmd:thesaurusName/gmd:CI_Citation/gmd:title/gco:CharacterString/text()" /></div>
15
16
    <ul>
17
      <xsl:for-each select="./gmd:keyword">
18
        <li><xsl:apply-templates select="." /></li>
19
      </xsl:for-each>
20
    </ul>
21
  </xsl:template>
22 10046 mecum
</xsl:stylesheet>