HEX
Server: Apache
System: Linux ns308404 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
User: root (0)
PHP: 8.3.31
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/onlinedev.com/httpdocs/projects.php
<?php
	require_once('admin/app.php');
	date_default_timezone_set('Europe/Paris');
	$project = new Project();
	$items = $project->getArray(0, 0, 'id desc');	
	$allprojects = $project->paginate('nos_realisations-%s.html', 20, '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 //echo App::getMeta(array('title' => 'Annuaire des meilleures agences SEO France'))?>
	<?php //echo App::getMeta(array('description' => 'Annuaire des meilleures agences de r&eacute;f&eacute;rencement naturel en France'))?>
	<?php
	$page=isset($_GET['page'])?(int)$_GET['page']:1; 
	echo App::getMeta(array('title' => 'Annuaire des meilleures agences SEO France-page'.$page,'description'=>'Annuaire des meilleures agences SEO France-page'.$page))?>
	<link href="<?php echo App::getBaseUrl() ?>include/style.css" rel="stylesheet" type="text/css" />
	<link rel="Shortcut Icon" href="<?php echo App::getBaseUrl() ?>favicon.ico" />
</head>

<body>

<div id="page">
	<div id="left">
		<?php echo  App::loadPartial('menu_left')?>

		<?php echo  App::loadPartial('left_projects_box')?>

		<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&eacute;f&eacute;rencement naturel"><img src="<?php echo App::getBaseUrl() ?>images/star.png" alt="Demande de devis r&eacute;f&eacute;rencement naturel" class="star2" /></a>
				<!--<script type="text/javascript" src="<?php echo App::getBaseUrl() ?>include/flash.js"></script>-->
			</div>
		</div>

		<div id="center9">
			<h3>Annuaire des meilleures agences de r&eacute;f&eacute;rencement naturel en France</h3>
			<br />
			<?php foreach ($allprojects as $item) :?>
			<p style="overflow: hidden">
			     <img titre="<?php echo $item['title']; ?>" alt="<?php echo $item['title']; ?>" style="float:left; margin: 0 10px 10px 0" class="border1" src="<?php echo getThumb('projects/'.$item['image'], 200, 200, 'dynamic')?>"  />
			     <a href="realisations/<?php echo $item['url'] ?>.html" title="<?php echo $item['title'] ?>"><strong><?php echo $item['title']; ?></strong></a><br /><br />
    			     <?php echo $item['description']; ?>
			</p>
			<?php endforeach;?>			
			 <?php echo $project->getPagination()?>
		</div>
	</div>
	<div class="cleaner"></div>
</div>

<?php echo  App::loadPartial('footer')?>

</body>
</html>