include('config.php');
include('module/art.inc.php');
#=====================================================#
if($sortby<>'') $uart_sort = save_sort('art', $sortby);
#=====================================================#
function site_main() {
global $id, $page, $arts, $art_limit, $topic;
if(isset($id)) {
show_art('');
count_art();
} elseif($topic<>'') {
main_title_open();
echo '
'.topic_name($topic);
main_title_close();
main_text_open();
list_open();
$napis = list_arts($topic, $art_limit, $page);
list_close();
echo '';
echo ' '.$napis.' ';
main_text_close();
} else {
main_title_open();
echo 'Artykuły';
main_title_close();
main_text_open();
echo '
';
list_open();
list_topics();
list_close();
main_text_close();
}
}
#=====================================================#
$site_title = 'artykuły';
$meta_info = '';
include("theme/$theme/index.php");
?>