fsfe-website/about/team.xsl

46 lines
1.4 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:import href="../tools/xsltsl/countries.xsl" />
<xsl:import href="../fsfe.xsl" />
<xsl:output method="html" encoding="utf-8" indent="yes" doctype-system="about:legacy-compat" />
<!--
For documentation on tagging (e.g. display a people list), take a
look at the documentation under
/tools/xsltsl/documentation-tagging.txt
-->
<!-- Fill dynamic content -->
<!-- All people with council tag -->
<xsl:template match="council-members">
<xsl:call-template name="country-people-list">
<xsl:with-param name="team" select="'council'" />
</xsl:call-template>
</xsl:template>
<!-- All people with ga tag -->
<xsl:template match="ga-members">
<xsl:call-template name="country-people-list">
<xsl:with-param name="team" select="'ga'" />
</xsl:call-template>
</xsl:template>
<!-- All people with core tag -->
<xsl:template match="core-members">
<xsl:call-template name="country-people-list">
<xsl:with-param name="team" select="'core'" />
</xsl:call-template>
</xsl:template>
<!-- All people with intern tag -->
<xsl:template match="intern-members">
<xsl:call-template name="country-people-list">
<xsl:with-param name="team" select="'intern'" />
</xsl:call-template>
</xsl:template>
</xsl:stylesheet>