mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-02 14:02:17 -05:00
24 lines
735 B
XML
24 lines
735 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<xsl:stylesheet version="1.0"
|
||
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||
|
<xsl:template match="/changelog">
|
||
|
<html>
|
||
|
<body>
|
||
|
<h2><img src="https://raw.github.com/k9mail/k-9/master/res/drawable-hdpi/icon.png"/><a href="https://code.google.com/p/k9mail/">K-9 Mail</a> Change Log</h2>
|
||
|
<xsl:for-each select="release">
|
||
|
<h3>
|
||
|
<xsl:value-of select="./@version" />
|
||
|
</h3>
|
||
|
<ul>
|
||
|
<xsl:for-each select="change">
|
||
|
<li>
|
||
|
<xsl:value-of select="." />
|
||
|
</li>
|
||
|
</xsl:for-each>
|
||
|
</ul>
|
||
|
</xsl:for-each>
|
||
|
</body>
|
||
|
</html>
|
||
|
</xsl:template>
|
||
|
</xsl:stylesheet>
|