2022-07-31 11:02:55 +08:00
|
|
|
{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>" | safeHTML }}
|
|
|
|
<search>
|
|
|
|
{{range where .Site.RegularPages "Kind" "page"}}
|
|
|
|
<entry>
|
|
|
|
<title>{{ .Title }}</title>
|
2022-09-17 21:54:36 +08:00
|
|
|
<url>{{ .RelPermalink | relLangURL }}</url>
|
2022-07-31 11:02:55 +08:00
|
|
|
<categories>
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ range .Params.categories }}<category>{{ . }}</category>{{ end }}
|
2022-07-31 11:02:55 +08:00
|
|
|
</categories>
|
|
|
|
<tags>
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ range .Params.tags }}
|
2022-07-31 11:02:55 +08:00
|
|
|
<tag>{{ . }}</tag>
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ end }}
|
2022-07-31 11:02:55 +08:00
|
|
|
</tags>
|
|
|
|
<content type="html"><![CDATA[{{ .Content | plainify }}]]></content>
|
|
|
|
</entry>
|
|
|
|
{{ end }}
|
|
|
|
</search>
|