<?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block to the TOP of your page BEFORE anything else. */
  require_once "/home/content/p/e/o/peoplescoreweb/html/cmsAdmin/lib/viewer_functions.php";

  list($newsRecords, $newsMetaData) = getRecords(array(
    'tableName'   => 'news',
  ));

?>

<rss version="2.0"> 
  <channel> 
    <title>Vancouver Commadno Krav Maga</title> 
      <link>http://www.vancouverckm.com</link> 
      <description>Vancouver Commadno Krav Maga</description> 
      <pubDate><?php echo date('r'); ?></pubDate> 
      <language>en-us</language>
<?php foreach ($newsRecords as $record): ?> 
        <item> 
          <title><?php echo htmlspecialchars($record['title']) ?></title> 
          <link><?php echo $record['_link'] ?></link> 
          <description><?php echo htmlspecialchars($record['content']); ?></description> 
          <pubDate><?php echo date("r", strtotime($record['createdDate'])) ?></pubDate> 
          <guid isPermaLink="true">http://www.vancouverckm.com<?php echo $record['_link'] ?></guid></item><?php endforeach ?></channel></rss>
