File: /var/www/vhosts/onlinedev.com/httpdocs/articles.php
<?php
require_once('admin/app.php');
date_default_timezone_set('Europe/Paris');
$model = new News();
$model->parent_id = '0';
//$allnews = $model->getArray(0,0, 'id desc');
$news = $model->getArray(0, 5, 'created_at desc');
$allnews = $model->paginate('actualites_ecommerce-%s.html', 50, 'created_at desc');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
$page=isset($_GET['page'])?(int)$_GET['page']:1;
echo App::getMeta(array('title' => 'Agence SEO Google Paris : Conseils en référencement naturel -'.$page,'description'=>'Agence SEO Google Paris : Conseils en référencement naturel -'.$page))?>
<link href="include/style.css" rel="stylesheet" type="text/css" />
<link rel="Shortcut Icon" href="favicon.ico" />
</head>
<body>
<div id="page">
<div id="left">
<?php echo App::loadPartial('menu_left')?>
<h2 class="title2"><a href="<?php echo App::getBaseUrl() ?>actualites_ecommerce.html"><span>Actualités E-commerce</span></a></h2>
<ul class="m2">
<?php foreach ($news as $item): ?>
<li>
<a href="news/<?php echo $item['url'] ?>.html" title="<?php echo $item['title'] ?>"><?php echo $item['title'] ?></a>
<?php $children = News::getById($item['id'])->getChildren(); if (count($children) > 0): ?>
<ul>
<?php foreach ($children as $child): ?>
<li>
<a href="<?php echo App::getBaseUrl() ?>news/<?php echo $child['url'] ?>.html" title="<?php echo $child['title'] ?>"><?php echo $child['title'] ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
<div class="devis">
<p class="tel">+33 1 41 62 10 61<br />+33 6 07 49 90 52</p>
<p class="mail"><a href="mailto:contact@onlinedev.com"><img src="<?php echo App::getBaseUrl() ?>images/mail.gif" alt="" /></a></p>
</div>
</div>
<div id="cont">
<div id="header">
<?php echo App::loadPartial('menu_top')?>
<div class="info">
<a href="<?php echo App::getBaseUrl() ?>mon_projet.html" title="Demande de devis référencement naturel"><img src="<?php echo App::getBaseUrl() ?>images/star.png" alt="Demande de devis référencement naturel" class="star2" /></a>
<!--<script type="text/javascript" src="<?php echo App::getBaseUrl() ?>include/flash.js"></script>-->
</div>
</div>
<div id="center9">
<h3>Conseils & astuces SEO<br> pour booster le trafic et les ventes internet</h3>
<ul class="list2 type1">
<?php foreach ($allnews as $item): ?>
<li>
<a href="<?php echo App::getBaseUrl() ?>news/<?php echo $item['url'] ?>.html" title="<?php echo $item['title'] ?>"><?php echo $item['title'] ?></a>
<?php $children = News::getById($item['id'])->getChildren(); if (count($children) > 0): ?>
<ul>
<?php foreach ($children as $child): ?>
<li>
<a href="<?php echo App::getBaseUrl() ?>news/<?php echo $child['url'] ?>.html" title="<?php echo $child['title'] ?>"><?php echo $child['title'] ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
<?php echo $model->getPagination()?>
</div>
</div>
<div class="cleaner"></div>
</div>
<?php echo App::loadPartial('footer')?>
</body>
</html>