view news.inc.php @ 123:5837b9333964

Add new "about" page, and setting for default page.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Oct 2013 15:18:09 +0300
parents e36c4d2b09c4
children a778629edff9
line wrap: on
line source

<?
echo stGetSetting("newsHeader");

if (($res = stExecSQL("SELECT * FROM news ORDER BY utime DESC")) !== FALSE)
{
  foreach ($res as $item)
    stPrintNewsItem($item);
}
?>