Skip to content

Instantly share code, notes, and snippets.

@designermonkey
Created June 3, 2012 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save designermonkey/2863055 to your computer and use it in GitHub Desktop.
Save designermonkey/2863055 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:import href="../utilities/master.xsl"/>
<xsl:template match="data">
<h2>Άρθρα καταστατικού</h2>
<ul>
<xsl:apply-templates select="katastatiko/entry">
<xsl:sort select="katastatiko_article_number" data-type="number" order="ascending"/>
</xsl:apply-templates>
</ul>
</xsl:template>
<xsl:template match="katastatiko/entry">
<li>
<xsl:value-of select="./katastatiko_article_number/@handle"/>
</li>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment