Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<xsl:stylesheet version="1.0" xmlns:dr="http://www.driver-repository.eu/namespace/dr"
3
    xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
    exclude-result-prefixes="xsl dr dc" >
5

    
6
    <xsl:output method="html" encoding="UTF-8" indent="yes"/>
7
    
8

    
9

    
10
    <xsl:template match="/">
11
   		<table>
12
			<tr>
13
				<td>
14
					<img src="static.get?src=doc.png" width="80" height="80" />
15
				</td>
16
				<td>
17
					<b>
18
            			<xsl:value-of select="//dc:title"/>
19
        			</b>
20
        			<br/>
21
			        <i>
22
			            <xsl:for-each select="//dc:creator">
23
			                <xsl:if test="position() &gt; 1">, </xsl:if>
24
			                <xsl:value-of select="."/>
25
			            </xsl:for-each>
26
			        </i>
27
				</td>
28
			</tr>
29
		</table>
30
    </xsl:template>
31

    
32
</xsl:stylesheet>
(2-2/2)