people.xsl 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. _ _ ____ _
  4. _| || |_/ ___| ___ _ __ _ __ ___ | |
  5. |_ .. _\___ \ / _ \ '_ \| '_ \ / _ \| |
  6. |_ _|___) | __/ |_) | |_) | (_) |_|
  7. |_||_| |____/ \___| .__/| .__/ \___/(_)
  8. |_| |_|
  9. Personal Social Web.
  10. Copyright (C) The #Seppo contributors. All rights reserved.
  11. This program is free software: you can redistribute it and/or modify
  12. it under the terms of the GNU General Public License as published by
  13. the Free Software Foundation, either version 3 of the License, or
  14. (at your option) any later version.
  15. This program is distributed in the hope that it will be useful,
  16. but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. GNU General Public License for more details.
  19. You should have received a copy of the GNU General Public License
  20. along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. https://www.w3.org/TR/xslt-10/
  22. -->
  23. <xsl:stylesheet
  24. xmlns="http://www.w3.org/1999/xhtml"
  25. xmlns:h="http://www.w3.org/1999/xhtml"
  26. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  27. version="1.0">
  28. <xsl:output
  29. method="html"
  30. doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
  31. doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"/>
  32. <xsl:template match="@*|node()">
  33. <xsl:copy>
  34. <xsl:apply-templates select="@*|node()"/>
  35. </xsl:copy>
  36. </xsl:template>
  37. </xsl:stylesheet>