Woah, that was simple, with the "code" module.
Here's what I did:
print "<style type=\"text/css\">\n.post_title, .post_date { border-bottom: 1px solid #DDDDDD; }\n.post_title { font-weight: bold; font-size: 12px; color: #000000; }\n.post_date { text-align: right; font-weight: bold; }\n.post_short { text-align: justify; padding-bottom: 5px; }\n</style>\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\">\n";
$database = new database;
$query = "SELECT content_short, link, posted_when, title FROM ".TABLE_PREFIX."mod_news_posts ORDER BY posted_when DESC LIMIT 0,10";
$res = $database->query($query);
while ($post_info = $res->fetchRow())
{
$content_short = $post_info[0];
$LINK = WB_URL."/pages".$post_info[1].PAGE_EXTENSION;
$TITLE = $post_info[3];
$TIME = date("g:i", $post_info[2]);
$DATE = date("F d Y", $post_info[2]);
print "<tr class=\"post_top\">\n";
print "<td class=\"post_title\"><a href=\"$LINK\">$TITLE</a></td>\n";
print "<td class=\"post_date\">$DATE, $TIME</td>\n";
print "</tr>\n";
print "<tr>\n";
print "<td class=\"post_short\" colspan=\"2\">\n";
print "$content_short";
print "<a href=\"$LINK\">Read more...</a>\n";
print "</td>\n";
print "</tr>\n";
}
If you need to tune the date/time, look here
www.php.net/date You might also need to tune the link path too