mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-30 05:02:26 -05:00
24 lines
762 B
XML
24 lines
762 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.githubusercontent.com/k9mail/k-9/master/k9mail/src/main/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>
|