Here's the script I use with StaticPages 1.2. It is a modified version of the TomW/Squatty code:
-Rei
-----------
//
// PHP Snippet for Geeklog StaticPages 1.2 to display RDF Headlines.
// Thx to TomW/Squatty for original codebase.
// Modification by Rei Yoshioka (rei@yoshioka.com)
//
// INSTRUCTIONS:
//
// Install the StaticPages 1.2 which allows PHP content on static pages.
// Configure RDF Portal Blocks and reference them below by block name.
// Cut and paste this code into a PHP-enabled static page.
// The only thing you should need to change is the list of feeds.
//
//
// CONFIG:
//
// These are names of the GeekLog RDF Portal Block feeds, and their URLs.
// Edit these lines to pick the feeds to display.
// The format is: "FEEDBLOCKNAME" => array("url" => "http://WHATEVER.URL.YOU.WANT.COM),
// Be careful to preserve the commas at the ends of the lines (except the last entry).
//
$RY_feeds = array(
"top" => array("url" => "http://www.cnn.com"

,
"cert" => array("url" => "http://www.cert.org"

,
"bbnews" => array("url" => "http://www.espn.com"

);
// You should not have to modify any of the code below this line...
$RY_DEBUG = 0;
$RY_headlines = "";
// Find Portal Blocks
$RY_sql = "SELECT *,UNIX_TIMESTAMP(rdfupdated) as date FROM {$_TABLES['blocks']} ";
$RY_sql .= "WHERE type='portal' order by blockorder,title asc";
$RY_blocks = DB_query($RY_sql);
// Search thru Portal Blocks for the ones we are interested in.
$RY_numRows = DB_numRows($RY_blocks);
for ($RY_i=0; $RY_i<$RY_numRows; $RY_i++) {
$RY_block=DB_fetchArray($RY_blocks);
$RY_blockName=$RY_block['name'];
// Is this a feed that we are interested in displaying?
if ($RY_feeds["$RY_blockName"] > 0) {
if ($RY_DEBUG) {
$RY_headlines .= "FOUND: $RY_blockName";
$RY_headlines .= "<br>";
}
// Retrieve feed links.
COM_rdfCheck( $RY_block['bid'], $RY_block['rdfurl'], $RY_block['date'] );
$RY_links = $RY_block['content'];
if (substr($RY_links,0,5) == "Parse"

{ $RY_links="Site feed Down"; }
$RY_feeds["$RY_blockName"]["links"] = $RY_links;
$RY_feeds["$RY_blockName"]["title"] = $RY_block['title'];
}
}
// Generate output.
foreach ($RY_feeds as $RY_key => $RY_feed) {
if ($RY_DEBUG) {
$RY_headlines .= "OUTPUT: $RY_key";
$RY_headlines .= "<br>";
}
$RY_headlines .= "<a href='{$RY_feeds[$RY_key]["url"]}'>" . $RY_feeds[$RY_key]["title"] . '</a><br>';
$RY_headlines .= $RY_feeds[$RY_key]["links"];
$RY_headlines .= "<br>";
}
return $RY_headlines;