From 52b077a48c743ba4d08ac00520a0bf1ef6deef5f Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Fri, 24 Feb 2017 21:27:59 +0100 Subject: Initial commit. --- template/standard/html/feed/main.php | 50 ++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 template/standard/html/feed/main.php (limited to 'template/standard/html/feed/main.php') diff --git a/template/standard/html/feed/main.php b/template/standard/html/feed/main.php new file mode 100644 index 0000000..174a841 --- /dev/null +++ b/template/standard/html/feed/main.php @@ -0,0 +1,50 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# + +switch($FEED['TYPE']) { + case 'post': + $title = escapeHTML($BLOGMETA['NAME']).' ['.$Language->template('feed_only_posts').']'; + $self = Application::getURL('feed/post/'); + break; + case 'page': + $title = escapeHTML($BLOGMETA['NAME']).' ['.$Language->template('feed_only_pages').']'; + $self = Application::getURL('feed/page/'); + break; + default: + $title = escapeHTML($BLOGMETA['NAME']); + $self = Application::getURL('feed/'); +} +?> +'?> + + + <?=$title?> + + + + + + + + <?=escapeHTML($BLOGMETA['NAME'])?> + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3