diff options
Diffstat (limited to 'templates/opml.xml.tmpl')
-rw-r--r-- | templates/opml.xml.tmpl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/opml.xml.tmpl b/templates/opml.xml.tmpl new file mode 100644 index 00000000..50bbabe3 --- /dev/null +++ b/templates/opml.xml.tmpl @@ -0,0 +1,16 @@ +<?xml version="1.0"?> +<opml version="1.1"> + <head> + <title><TMPL_VAR name></title> + <dateCreated><TMPL_VAR date_822></dateCreated> + <dateModified><TMPL_VAR date_822></dateModified> + <ownerName><TMPL_VAR owner_name></ownerName> + <ownerEmail><TMPL_VAR owner_email></ownerEmail> + </head> + + <body> + <TMPL_LOOP Channels> + <outline text="<TMPL_VAR name ESCAPE="HTML">" xmlUrl="<TMPL_VAR uri ESCAPE="HTML">"/> + </TMPL_LOOP> + </body> +</opml> |