<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" exclude-result-prefixes="a xhtml dll"
	xmlns:a="http://materialeplatform.dk/xml/danLom"
	xmlns:dll="http://materialeplatform.dk/xml/danLomList"
	xmlns:xhtml="http://www.w3.org/1999/xhtml"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	
	<xsl:output standalone="yes" omit-xml-declaration="yes" indent="no" method="xml" />
	
	<xsl:template match="dll:lomlist" xmlns:a="http://materialeplatform.dk/xml/danLom">
		<xsl:apply-templates select="a:lom" />
	  <xsl:text>...</xsl:text>
	</xsl:template>
	
	<xsl:template match="a:lom" xmlns:a="http://materialeplatform.dk/xml/danLom">
		<xsl:value-of select="a:general/a:title" />
	  <xsl:text>, </xsl:text>
	</xsl:template>

</xsl:stylesheet>

