timeline.xsl 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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://w3.org/TR/xslt-10
  22. https://w3.org/TR/xpath-10
  23. -->
  24. <xsl:stylesheet
  25. xmlns="http://www.w3.org/1999/xhtml"
  26. xmlns:a="http://www.w3.org/2005/Atom"
  27. xmlns:as="https://www.w3.org/ns/activitystreams#"
  28. xmlns:georss="http://www.georss.org/georss"
  29. xmlns:ldp="http://www.w3.org/ns/ldp#"
  30. xmlns:media="http://search.yahoo.com/mrss/"
  31. xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"
  32. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  33. xmlns:schema="http://schema.org#"
  34. xmlns:seppo="http://seppo.social/2023/ns#"
  35. xmlns:toot="http://joinmastodon.org/ns#"
  36. xmlns:wf="urn:ietf:rfc:7033"
  37. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  38. exclude-result-prefixes="a as opensearch ldp media georss rdf"
  39. version="1.0">
  40. <xsl:include href="posts.xsl"/>
  41. </xsl:stylesheet>