All checks were successful
continuous-integration/drone/push Build is passing
update docs update nix-shell to auto install rework custom pre-commit hooks to integrate better add dockerfile for lefthook and integrate into drone add some more hooks for formatting and linting some files Co-authored-by: Darragh Elliott <me@delliott.net> Reviewed-on: #5248 Co-authored-by: delliott <delliott@fsfe.org> Co-committed-by: delliott <delliott@fsfe.org>
23 lines
740 B
XML
23 lines
740 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:import href="../../fsfe.xsl"/>
|
|
<xsl:template match="signatories">
|
|
<h3 id="organisations">
|
|
<xsl:call-template name="fsfe-gettext">
|
|
<xsl:with-param name="id" select="'osig'"/>
|
|
</xsl:call-template>
|
|
</h3>
|
|
<ul>
|
|
<xsl:apply-templates select="/buildinfo/document/set/osig/node()"/>
|
|
</ul>
|
|
<h3 id="individuals">
|
|
<xsl:call-template name="fsfe-gettext">
|
|
<xsl:with-param name="id" select="'isig'"/>
|
|
</xsl:call-template>
|
|
</h3>
|
|
<ul>
|
|
<xsl:apply-templates select="/buildinfo/document/set/isig/node()"/>
|
|
</ul>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|