Files
delliott 1a05dee2f6
All checks were successful
continuous-integration/drone/push Build is passing
build: use lefthook for pre-commit (#5248)
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>
2025-08-27 15:22:06 +00:00

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>