2020-04-27 21:53:42 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2005-10-10 13:24:39 +00:00
|
|
|
|
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
2013-01-17 23:13:14 +00:00
|
|
|
<xsl:import href="../fsfe.xsl" />
|
2020-04-27 21:53:42 +02:00
|
|
|
<xsl:import href="../build/xslt/people.xsl" />
|
2020-04-27 16:18:19 +02:00
|
|
|
|
|
|
|
<!-- Fill dynamic content -->
|
2020-04-27 21:53:42 +02:00
|
|
|
|
2013-12-17 13:42:12 +00:00
|
|
|
<!-- All people with council tag -->
|
|
|
|
<xsl:template match="council-members">
|
2010-12-22 11:13:52 +00:00
|
|
|
<xsl:call-template name="country-people-list">
|
2013-12-17 13:42:12 +00:00
|
|
|
<xsl:with-param name="team" select="'council'" />
|
2010-12-22 11:13:52 +00:00
|
|
|
</xsl:call-template>
|
2005-10-10 13:24:39 +00:00
|
|
|
</xsl:template>
|
2013-12-17 13:42:12 +00:00
|
|
|
|
2020-04-27 16:18:19 +02:00
|
|
|
<!-- All people from council, ga or core -->
|
2013-12-17 13:42:12 +00:00
|
|
|
<xsl:template match="core-members">
|
|
|
|
<xsl:call-template name="country-people-list">
|
2020-04-27 16:18:19 +02:00
|
|
|
<xsl:with-param name="team" select="'council,ga,core'" />
|
|
|
|
<!-- class "filter" is used to limit filter-teams.js to this div -->
|
|
|
|
<xsl:with-param name="extraclass" select="'filter'" />
|
2013-12-17 13:42:12 +00:00
|
|
|
</xsl:call-template>
|
|
|
|
</xsl:template>
|
2005-10-10 13:24:39 +00:00
|
|
|
|
2012-09-05 08:23:53 +00:00
|
|
|
</xsl:stylesheet>
|