2025-06-25 13:13:37 +07:00
|
|
|
{% if page.layout == "xslt" %}<?xml version="1.0" encoding="utf-8"?>
|
2025-06-25 18:29:21 +07:00
|
|
|
<?xml-stylesheet type="text/xml" href="/feed.xslt.xml"?>
|
2026-02-04 08:27:35 +07:00
|
|
|
<?xml-stylesheet type="text/css" href="/assets/css/xslt.css"?>
|
2026-04-17 08:53:23 +07:00
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sm="http://www.sitemaps.org/schemas/sitemap/0.9">
|
2025-06-25 14:00:08 +07:00
|
|
|
<xsl:output method="html" version="4.0" encoding="UTF-8" indent="yes" doctype-system="about:legacy-compat" />
|
2025-06-25 12:43:23 +07:00
|
|
|
<xsl:template match="/">
|
2025-06-29 15:31:33 +07:00
|
|
|
{{ content }}
|
2025-06-26 10:21:48 +07:00
|
|
|
</xsl:template>
|
2025-06-25 12:43:23 +07:00
|
|
|
</xsl:stylesheet>
|
2025-06-25 13:45:14 +07:00
|
|
|
{% else %}<!DOCTYPE html>
|
|
|
|
|
{{ content }}
|
2025-06-25 12:43:23 +07:00
|
|
|
{% endif %}
|