<?php
include_once("includes/base.inc");

$page = new Page("/");
$page->event = "home";
$page->name = "Home";
$page->title = "Home";
$page->body = "<h2>Welcome to Semantic Diet!</h2>";
$page->body .= "<p>Semantic Diet is a new project started by <a href=\"http://www.evanpatton.com/\">Evan Patton</a> to help people eat healthier. The application is still under development at this time, but some of the data are available through the ".event_link("Data Access","data")." page. For those with experience in semantic technologies, you can also access the data via the Semantic Diet triple store using the URI <b class=\"uri\">http://semanticdiet.com/sparql</b>.</p>";
$page->body .= "<p>Thanks to everyone at the <a href=\"http://foodhack.wikispaces.com/\">Food+Tech hackathon</a> who took advantage of the translated datasets available through semanticdiet.com. Please send along any improvements you'd like to see to the data.</p>";

$currentTheme->render($page);
?>