<?php

require_once('Views/Page.php');
require_once('Models/Entry.php');

$Page = new Page();

// Initialize the page components
$Page->setTemplate('feed.xml');
$Page->setTitle('Infocraft: Standards-Based Web Development');

// Retrieve the relevant data
$conditions = array('type = ?' => 'Project', 'active = ?' => 1);
$Entries = Entry::findAll($conditions, 10);

// Render the components or content
foreach ($Entries as $Page->Entry) {
    $Page->renderComponent('entry.xml');
}

$Page->render();

?>
