summaryrefslogtreecommitdiff
path: root/pages/rss.php
blob: 907554deda7d328d4aa0b54297a0080057461584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="header">
  <div class="header_rss">
    RSS
  </div>
</div>
<?php

include_once($UTIL_DIR . "/rss.php");

$rss = new RSS($DATA_DIR."/news.xml", "rss.xml");
$rss->write();

?>