-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPAC3.xsl
28 lines (26 loc) · 1.16 KB
/
PAC3.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html"/>
<!-- TODO customize transformation rules
syntax recommendation http://www.w3.org/TR/xslt
-->
<xsl:template match="/">
<table border="0" cellspacing="5" cellpadding="5" width="100%" style="padding: 5px; margin: 5px; border-color:#000000; border-width:1; border-style:solid ">
<xsl:for-each select="photos/photo">
<tr style="background-color:DarkSeaGreen;">
<td width="200px">
<xsl:variable name="link" select="@url_m" />
<img src="{$link}" width="200px"/>
</td>
<td style="vertical-align:bottom;text-align:left;">
Autor:
<xsl:value-of select="@ownername" />
<br/>
Etiquetes:
<xsl:value-of select="@tags" />
</td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>