while($lNoticia = mysqli_fetch_array($lQueryNoticia)){ ?>
echo getNewsCard($lNoticia['cdnoticia'], $lNoticia['nmtitulo'], $lNoticia['nmimagem'], $lNoticia['dtpublicacao'], $lNoticia['nrtempoleitura'], $lNoticia['dsslug'], $lNoticia['nrvisualizacoes'], $lNoticia['nrlikes']); ?>
} ?>
include('_pages/videosection.php'); ?>
echo getHeaderTitle("Mais vídeos"); ?>
$lQueryVideo = mysqli_query($lConexao, 'SELECT * FROM itr_noticias WHERE fgativo <> 9 AND fgvideo = 1 ORDER BY dtpublicacao DESC LIMIT 0, 3'); ?>
while($lVideo = mysqli_fetch_array($lQueryVideo)){ ?>
echo getVideoCard($lVideo['cdnoticia'], $lVideo['nmtitulo'], $lVideo['nmimagem'], $lVideo['dsslug'], $lVideo['nrvisualizacoes'], $lVideo['nrlikes']); ?>
} ?>
include('_pages/events.php'); ?>
include('_pages/homeabout.php'); ?>
include('_pages/subscribe.php'); ?>
}else{
switch($gSecao){
case 'SOBRE':
include('_pages/about.php');
break;
case 'PERFIL':
include('_pages/profile.php');
break;
case 'EQUIPE':
include('_pages/team.php');
break;
case 'HOSPITAIS':
include('_pages/hospitals.php');
break;
case 'CCP':
include('_pages/ccp.php');
break;
case 'PERITONEAL':
include('_pages/peritoneal.php');
break;
case 'COLORRETAL':
include('_pages/colorretal.php');
break;
case 'GASTRICO':
include('_pages/gastrico.php');
break;
case 'OVARIO':
include('_pages/ovario.php');
break;
case 'PANCREAS':
include('_pages/pancreas.php');
break;
case 'PERITONIO':
include('_pages/peritonio.php');
break;
case 'APENDICE':
include('_pages/apendice.php');
break;
case 'RAROS':
include('_pages/raros.php');
break;
case 'TRATAMENTOS':
include('_pages/treatments.php');
break;
case 'HIPAC':
include('_pages/hipac.php');
break;
case 'ICG':
include('_pages/icg.php');
break;
case 'PIPAC':
include('_pages/pipac.php');
break;
case 'VIDEOS':
include('_pages/videos.php');
break;
case 'EVENTOS':
include('_pages/eventslist.php');
break;
case 'DEPOIMENTOS':
include('_pages/depoimentos.php');
break;
case 'NOTICIAS':
include('_pages/news.php');
break;
case 'POST':
include('_pages/newsdetail.php');
break;
case 'CONTATO':
include('_pages/contact.php');
break;
}
} ?>