summaryrefslogtreecommitdiff
path: root/src/web/_views/apps/blog_rss.php
blob: 1d0dcd437648770939d94233219192b546abc6d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<rss version="2.0">
	<channel>
		<title><?=lang('title')?></title>
		<link><?=lang('root_url') . '/blog'?></link>
		<description><?=lang('blog_short_desc')?></description>
		<language><?=lang('lang_short')?></language>
	<?php
		foreach ($blog as $name => $post) {
			echo '<item>';
			echo '<title>' . $post['meta']['name'] . '</title>';
			echo '<description>' . $post['meta']['desc'] . '</description>';
			echo '<pubDate>' . $post['meta']['date'] . '</pubDate>';
			echo '<link>' . lang('root_url') . '/blog/post?name=' . $name . '</link>';
			echo '<guid>' . lang('root_url') . '/blog/post?name=' . $name . '</guid>';
			echo '</item>';
		}
	?>
	</channel>
</rss>