Mozilla/mozilla/minimo/chrome/content/bookmarks/bookmark_template.xml
mgalli%geckonnection.com 54ab8b495d polish to bookmark.
git-svn-id: svn://10.0.0.236/trunk@190175 18797224-902f-48f8-a5cc-f745e15eee43
2006-02-16 00:36:46 +00:00

41 lines
966 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE stylesheet [
<!ATTLIST xsl:sort id ID #IMPLIED>
<!ATTLIST xsl:variable id ID #IMPLIED>
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rss="http://purl.org/rss/1.0/"
>
<xsl:output method="html" indent="yes"/>
<xsl:template match="/">
<table width="100%">
<xsl:for-each select="/bm/li">
<tr><td class="item" width="1%" valign="middle" align="center">
<img>
<xsl:attribute name="src" >
<xsl:value-of select="@iconsrc"/>
</xsl:attribute>
</img>
</td><td class="item">
<a >
<xsl:attribute name="href">
<xsl:value-of select="."/>
</xsl:attribute>
<xsl:value-of select="@title"/>
</a>
</td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>