<?php

require_once $_SERVER['DOCUMENT_ROOT'] . '/config/config.php';
require_once $_SERVER['DOCUMENT_ROOT'] . '/classes/Article.class.php';

$article_class = new Article;

//$date = date("Y-m-d");
echo '<'.'?'.'x'.'m'.'l vers'.'ion="1'.'.'.'0'.'"
en'.'codi'.'ng="UT'.'F-8'.'" '.'?'.'>'."\n";
?>
<rss version="2.0">
<channel>
<title>Better Office News and Articles</title>
<description>The Latest News and Information from Better Office. Your source for all things office related.</description>
<link>http://<?php echo $_SERVER['SERVER_NAME']; ?>/news/</link>
<?php foreach($article_class->all_articles as $article) { ?>
	<item>
		<title><?php echo htmlspecialchars($article['headline']); ?></title>
		<link>http://<?php echo $_SERVER['SERVER_NAME'] . $article['url']; ?></link>
		<guid>http://<?php echo $_SERVER['SERVER_NAME'] . $article['url']; ?></guid>
		<description><?php echo htmlspecialchars($article['brief_description']); ?></description>
	</item>
<?php } ?>
</channel>
</rss>
