Welcom - Les Alizés Beach Hotel - Cap Skirring - Senegal
Les Alizés Beach Resort
We invite you to visit our Seaside Boutique Hotel, the only 5***** hotel in Casamance, which was built and operated for 13 years by its 2 Belgian owners Jean Paul & Barbara Fontaine-Dircx. Discover our exceptional services but also a beautiful area, the real Africa and its paradisiacal beaches of Cap Skirring where luxury, charm, authenticity & harmony combine to make you have an amazing holiday.
Swimming pool & idyllic beach
Endless, fine white sand beach or infinity pool: the two best features of our 5*****hotel
Jobs
« I am a graduate of the great university of speech, taught in the shade of baobabs ».
Amadou Hampâté BA. Tribune de l'UNESCO, 1960
Vacancies
We are looking for 2 trainees in (Hospitality) Management for this winter tourist season 2015-2016.
Your applications for any volunteer Internship during 3 to 6 months (reception, administration, cooking, baking, dining, bar, sommelier, housekeeping, maintenance, security, ...) are nevertheless always welcome for the next tourist season winter 2015-2016.
Please, kindly send them to the attention of the General Manager at the following email address: This email address is being protected from spambots. You need JavaScript enabled to view it..
Subscription is over !
![]() |
You are now subscribed to our newsletter |
We are happy to count you among us. | |
You will soon hear from us. | |
The team of "Les Alizés" |
Page 1 of 10
/* * @package Joomla.Site * @subpackage Templates.protostar * * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * This is a file to add template specific chrome to pagination rendering. * * pagination_list_footer * Input variable $list is an array with offsets: * $list[limit] : int * $list[limitstart] : int * $list[total] : int * $list[limitfield] : string * $list[pagescounter] : string * $list[pageslinks] : string * * pagination_list_render * Input variable $list is an array with offsets: * $list[all] * [data] : string * [active] : boolean * $list[start] * [data] : string * [active] : boolean * $list[previous] * [data] : string * [active] : boolean * $list[next] * [data] : string * [active] : boolean * $list[end] * [data] : string * [active] : boolean * $list[pages] * [{PAGE}][data] : string * [{PAGE}][active] : boolean * * pagination_item_active * Input variable $item is an object with fields: * $item->base : integer * $item->link : string * $item->text : string * * pagination_item_inactive * Input variable $item is an object with fields: * $item->base : integer * $item->link : string * $item->text : string * * This gives template designers ultimate control over how pagination is rendered. * * NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both */ /** * Renders the pagination footer * * @param array $list Array containing pagination footer * * @return string HTML markup for the full pagination footer * * @since 3.0 */ function pagination_list_footer($list) { $html = "\n";
$html .= $list['pageslinks'];
$html .= "\n";
$html .= "\n
";
return $html;
}
/**
* Renders the pagination list
*
* @param array $list Array containing pagination information
*
* @return string HTML markup for the full pagination object
*
* @since 3.0
*/
function pagination_list_render($list)
{
// Calculate to display range of pages
$currentPage = 1;
$range = 1;
$step = 5;
foreach ($list['pages'] as $k => $page)
{
if (!$page['active'])
{
$currentPage = $k;
}
}
if ($currentPage >= $step)
{
if ($currentPage % $step == 0)
{
$range = ceil($currentPage / $step) + 1;
}
else
{
$range = ceil($currentPage / $step);
}
}
$html = '- ';
$html .= $list['start']['data'];
$html .= $list['previous']['data'];
foreach ($list['pages'] as $k => $page)
{
if (in_array($k, range($range * $step - ($step + 1), $range * $step)))
{
if (($k % $step == 0 || $k == $range * $step - ($step + 1)) && $k != $currentPage && $k != $range * $step - $step)
{
$page['data'] = preg_replace('#(