Welcom - Les Alizés Beach Hotel - Cap Skirring - Senegal
Accommodation pictures
Swimming pool & Beach pisctures
Restaurant pictures
Welcome to Casamance
Casamance is undoubtedly the most beautiful part of the country. It is the tropical jewel of Senegal with its 86 km of white sandy beaches of the Atlantic Ocean and the rugged beauty of its wide variety of landscapes. They speak Wolof and French, which is the second official language of Senegal.
Situated in the extreme south of the country, between Gambia and Guinea Bissau, Casamance hosts half of the 22 ethnic groups in Senegal and offers like no other syncretism of Islam, Christianity and Animism. Visit this region to discover places of worship and memory, culture, savannah, its beaches, its river, its islands and extraordinary birds.
Our 5 ***** boutique resort hotel is itself located on the waterfront, along the most idyllic beach town of Cap Skirring. This seaside resort is renowned for more than 40 years for its tropical climate and its beaches +/- 35 km long, fringed with coconut palms, which are universally recognized by all tourist guides for Senegal as the most beautiful in the country but also in the entire West Africa.
Page 5 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('#(