| Server IP : 74.208.250.37 / Your IP : 216.73.216.114 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : miferval ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/aprendizajeodisea/app/views/ |
Upload File : |
<?php $noticias = $md->getNoticias(); ?>
<div class="one row np">
<div class="one row">
<div id="noticias" class="col_content">
<div class="container">
<h1 class="center">Noticias Odisea</h1>
<div class="col threefour">
<?php
foreach($noticias->rows as $noticia){
?>
<section class="page_row row_white " id="post_<?php echo $noticia['post_id'];?>">
<div itemscope itemtype="http://schema.org/Article">
<h1><?php echo utf8_encode($noticia['post_title']);?></h1>
<div class="post_image">
<?php if(!empty($noticia['post_image'])){ ?>
<img src="<?php echo $noticia['post_image'];?>" />
<?php } ?>
</div>
<div class="post_info">
</div>
<div class="post_content" itemprop="articleBody">
<?php echo utf8_encode($noticia['post_content']);?>
</div>
</div>
</section>
<?php
}
?>
</div>
<aside class="col four">
<div class="blog_list">
<h3>Archivo de Noticias</h3>
<ul>
<?php
foreach ($noticias->rows as $noticia) {
echo '<li><a href="#post_'.$noticia['post_id'].'">'.utf8_encode($noticia['post_title']).'</a></li>';
}
?>
</ul>
</div>
</aside>
</div>
</div>
</div>
</div>