Welcom - Les Alizés Beach Hotel - Cap Skirring - Senegal
Suites & Lofts
Be seduced by one of our 15 spacious Suites or one of our two major Lofts with air-condition and with an exceptional view of the ocean and / or our tropical garden. Each accommodation offers maximum comfort for the most discerning guests.
« Ocean » Suite
The Suites are located in the first line towards the sea with exclusive 180° ocean panoramic terrace and a fabulous sea view.
« Azur » Suite
Suites with intermediate size between the "ocean" suites and "garden" suites. They are in the 2nd line of the beach and have a lovely view of the property and of the sea.
« Garden » Suite
The largest of our suites. They can accommodate up to 8 people and extend over three levels. They are peaceful and offer a splendid view of the property and our tropical garden.
« Ocean » Loft
Our unique « Ocean" Loft is located above the gourmet restaurant and has a large private terrace with an exceptional 180* sea view, facing the ocean and the beach.
« Azur » Loft
Our unique “Azur" Loft is more intimate and located above the "spa". Its terrace has a lovely sea view. It is ideal for couples or families with 1 to 4 persons.
« Azur » Suite
« Beauty is the promise of happiness ». STENDHAL. « De l'Amour », 1822.
General information
We have 5 large "Azur" Suites, mid-size with a surface area of 80 to 200sqm. Each of these suites can accommodate from 1 to 6 people. So there are 3 air conditioned double rooms in total spread over 2 levels. You will only have to pay for the number of rooms you will use.
The "Azur" suites are in the second line of sea with a lovely view of the property and the sea
Facilities
- 1 to 3 air-conditioned rooms
- 1 to 3 shower rooms
- 2 separate toilets
- Kitchen
- Large air-conditioned lounge with TV (10 channels)
- Hi-Fi system
- DVD Player
- Wi-Fi
- 2 large terraces with long teak table and chairs
- Private garden lawn, shade and flowers
« Ocean » Loft
« Happy who, like Ulysse, has made a nice trip ».
Joachim du BELLAY. « Les Regrets » (1558).
General information
Our "Ocean" Loft is unique to the area. It is located in the first line of the sea and is above our gourmet restaurant. It is also very spacious with its 170m ² in area and can accommodate 1 to 4 adults and 2 children.
His greatest asset is undoubtedly its private terrace of 30sqm, facing south-west and boasting a 180 ° sea view, facingthe ocean and the beach. Naturally, you will have and will pay only the number of rooms you will need.
Facilities
- 1 to 2 double rooms with air conditioning
- 1 small double bedroom, air-conditioned with bunk beds for 2 children
- 1 to 3 shower rooms
- 3 separate toilets
- Kitchen
- Large air-conditioned lounge with TV (10 channels)
- Hi-Fi system
- DVD Player
- Wi-Fi
- 1 large panoramic terrace of 30m² with teak lounge chairs
« Azur » Loft
« Stay is to exist, but travel is to live ».
Gustave NADAU. « Contes, scènes et récits » (1870).
General information
Our "Azur" Loft is a little intimate cocoon and is unique to the area. It stands on the 2nd sea line of the sea and is above our shop space and "wellness." It can accommodate 1-4 people with its 110m ² in area. You will have and only pay for the number of rooms you will need.
The Loft also has a 15m ² terrace that offers beautiful sea views, overlooking the ocean and beach. In addition it certainly has one of the most romantic rooms, inspired by the Senegalese atmosphere.
Facilities
- 1 to 2 air conditioned double rooms
- 1 shower room
- Separate toilet
- Kitchen
- Large air-conditioned lounge with TV (10 channels)
- Hi-Fi system
- DVD Player
- Wi-Fi
- 15m² terrace with teak sun loungers
Page 6 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('#(