From 33794b12d5c68df918b988497a396b86acb09feb Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Fri, 26 Apr 2019 20:32:48 +0200
Subject: Rename "template" directory to "theme"

This commit renames the "template" directory to "theme" because "theme" is the more correct term here.
---
 theme/default/html/feed/item_post.php | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 theme/default/html/feed/item_post.php

(limited to 'theme/default/html/feed/item_post.php')

diff --git a/theme/default/html/feed/item_post.php b/theme/default/html/feed/item_post.php
new file mode 100644
index 0000000..07d400d
--- /dev/null
+++ b/theme/default/html/feed/item_post.php
@@ -0,0 +1,27 @@
+<?php
+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
+# Feed Item Template [post]                  [Thomas Lange <code@nerdmind.de>] #
+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
+#                                                                              #
+# [see documentation]                                                          #
+#                                                                              #
+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
+
+$HTML = $POST['BODY']['HTML']();
+?>
+<item>
+	<title><?=escapeHTML($POST['ATTR']['NAME'])?></title>
+	<link><?=$POST['URL']?></link>
+	<guid isPermaLink="false"><?=$POST['GUID']?></guid>
+	<pubDate><?=parseDatetime($POST['ATTR']['TIME_INSERT'], '[RFC2822]')?></pubDate>
+	<dc:creator><?=escapeHTML($USER['ATTR']['FULLNAME'])?></dc:creator>
+	<description><?=escapeHTML(description($HTML, 400))?></description>
+	<content:encoded>
+		<![CDATA[
+			<?=$HTML?>
+		]]>
+	</content:encoded>
+	<?php foreach($POST['FILE']['LIST'] as $fileURL): ?>
+		<media:content url="<?=$fileURL?>" medium="image"></media:content>
+	<?php endforeach; ?>
+</item>
\ No newline at end of file
-- 
cgit v1.2.3