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

$page = new Page("/");
$page->event = "home";
$page->name = "Home";
$page->title = "Home";
$page->body = "<h2>About 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 project marries food data with semantic web technologies to provide more intelligent search for nutrition and recipe information.</p>";
$page->body .= "<h2>About Evan Patton</h2>";
$page->body .= "<p>Evan Patton is a Ph.D. student in the Tetherless World Constellation at Rensselaer Polytechnic Institute. His primary research interests are personalized services on mobile devices driven by open data and reasoning technologies. He also works on the <a href=\"http://wineagent.tw.rpi.edu/\">Wine Agent</a> that provides personalized wine/food pairings based on user-specified criteria, including health/dietary needs and other personal preferences.</p>";

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