Skip to content
logo Consell
  • ES
  • CA
  • EN
  • DE
Logo Mallorca
An error occurred while processing the template.
Template inclusion failed (for parameter value "_TEMPLATE_CONTEXT_/20101/43575/20135/66130"):
Unable to find FreeMarker template with ID _TEMPLATE_CONTEXT_/20101/43575/20135/66130

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #include "${templatesPath}/66130"  [in template "20101#20128#42311" at line 9, column 5]
----
1<#if !entries?has_content> 
2	<#if themeDisplay.isSignedIn()> 
3		<div class="alert alert-info"> 
4			<@liferay.language key="there-are-no-menu-items-to-display" /> 
5		</div> 
6	</#if> 
7<#else> 
8	<#-- CARGAMOS TEMPLATE CON LA MACRO PARA DIBUJAR EL SVG DEL MAPA--> 
9    <#include "${templatesPath}/66130" /> 
10    <#-- CARGAMOS TEMPLATE CON LA MACRO PARA DIBUJAR EL WEATHER--> 
11    <#include "${templatesPath}/66183" /> 
12    <#assign 
13		imagesFolder = themeDisplay.getPathThemeImages() 
14	/> 
15	<#assign titles=[ 
16        languageUtil.get(themeDisplay.getLocale(), 'sm.menu.cabecera.quehacer.col1'), 
17        languageUtil.get(themeDisplay.getLocale(), 'sm.menu.cabecera.quehacer.col2'), 
18        languageUtil.get(themeDisplay.getLocale(), 'sm.menu.cabecera.planifica.col1'), 
19        languageUtil.get(themeDisplay.getLocale(), 'sm.menu.cabecera.planifica.col2')]/> 
20    <#assign i=0 /> 
21	<nav data-senna-off="true" class="navbar navbar-expand-lg navbar-light divNav"> 
22                                    <button class="d-block d-sm-block d-md-block d-lg-none d-xl-none navbar-toggler burgerSmart" type="button" id="burgerSmart" title="${languageUtil.get(locale, 'sm.cabecera.burguer.menu.title')}"> 
23                                        <span class="navbar-toggler-icon"></span> 
24                                        <span class="navbar-toggler-icon-text">${languageUtil.get(locale, 'sm.cabecera.burguer.menu.name')}</span> 
25                                    </button> 
26                                    <div class="collapSmart" id="navbarNavDropdown"> 
27                                        <ul class="navbar-nav ulNavSmart"> 
28                                            <#list entries as navigationEntry> 
29                                                <#if navigationEntry?is_last> 
30                                                    <@displayWeather url=navigationEntry.getURL()/> 
31                                                <#else> 
32                                                <li class="nav-item liNavSmart liMenu${navigationEntry?counter}" role='menu'> 
33                                                    <div class="liDivNavSmart"> 
34                                                        <span class="spanNavSmart" id="idMenu${navigationEntry?counter}"> 
35                                                            <a class="nav-link aNavSmart" href="${navigationEntry.getURL()}">${navigationEntry.getName()}</a> 
36                                                        </span> 
37                                                        <span class="d-lg-none spanIcoNavSmart"> 
38                                                            <img class="icoNavSmart" src="${imagesFolder}/sm/iconos/tab/arrowW.svg" alt="${languageUtil.get(locale, 'sm.cabecera.burguer.menu.flecha.alt')}" title="${languageUtil.get(locale, 'sm.cabecera.burguer.menu.flecha.alt')}" id="iconMenu${navigationEntry?counter}"/> 
39                                                        </span> 
40                                                    </div> 
41                                                    <section class="divMenu divMenu${navigationEntry?counter}" id="divMenu${navigationEntry?counter}"> 
42                                                    	<div class="container"> 
43   															<div class="row"> 
44			                                                    <#if navigationEntry?counter lt 2> 
45			                                                     
46			                                                    	<@displayMap entry=navigationEntry/> 
47			                                                    <#else> 
48			                                                        <#list navigationEntry.getChildren() as navigationEntryCol> 
49		                                                                <#if navigationEntryCol?counter gt 2> 
50			                                                                <div class="d-none d-lg-block  col-lg-3"> 
51			                                                                    <section class="sectionSecc"> 
52			                                                                        <#list navigationEntryCol.getBrowsableChildren() as linkNavigationChild> 
53			                                                                            <a href="${linkNavigationChild.getURL()}" class="aSSecc mB25"> 
54			                                                                                <#if linkNavigationChild.iconURL()?has_content> 
55			                                     <div class="marcMenu">                          <img class="imgFiltro" src="${imagesFolder}/sm/header/filtro.png" alt="${languageUtil.get(locale, 'sm.cabecera.inagen.filtro.alt')}" title="${languageUtil.get(locale, 'sm.cabecera.inagen.filtro.alt')}"> 
56			                                                                                <img class="imgSSecc" src="${linkNavigationChild.iconURL()}" alt="${languageUtil.get(locale, 'sm.template.slider.imagen')} ${linkNavigationChild.getName()}" title="${languageUtil.get(locale, 'sm.template.slider.imagen')}"/> 
57			                                     </div> 
58			                                        </#if> 
59			                                                                                <p>${linkNavigationChild.getName()}</p> 
60			                                                                        </a> 
61			                                                                         </#list> 
62			                                                                    </section> 
63			                                                                </div> 
64			                                                                <#else> 
65			                                                                <div class="col-12 col-lg-3"> 
66			                                                                    <section class="sectionSecc"> 
67			                                                                        <ul class="marginCol" title="${titles[i]}"> 
68			                                                                            <#assign i=i+1 /> 
69			                                                                         <#list navigationEntryCol.getBrowsableChildren() as linkNavigationChild> 
70			                                                                            <li class="marginCol"> 
71			                                                                                <a href="${linkNavigationChild.getURL()}" class="aSSecc" title="${linkNavigationChild.getName()}">${linkNavigationChild.getName()}</a> 
72			                                                                            </li> 
73			                                                                         </#list> 
74			                                                                        </ul> 
75			                                                                    </section> 
76			                                                                </div> 
77		                                                                </#if> 
78			                                                    	</#list> 
79			                                                	</#if> 
80			                                        		</div> 
81			                                        	</div> 
82                                                    </section> 
83                                                </li> 
84                                                </#if> 
85                                                 
86                                            </#list>    
87                                            <@displayAccesoMapaRT /> 
88                                        </ul> 
89                                    </div> 
90                                </nav> 
91</#if> 
92 
93<#macro displayMap entry> 
94        <div class="d-none d-lg-block col-lg-6"> 
95            <section class="sectionMap"> 
96                <div class="divMap" id="mapMallorca"> 
97                     <@displaySvgMap/> 
98                </div> 
99            </section> 
100        </div> 
101         
102        <#-- Recorremos las dos columnas la primera con las comarcas y la segunda con los destacados--> 
103        <#list entry.getChildren() as navigationEntryCol> 
104        	<#if navigationEntryCol?counter lt 2> 
105        		<#if navigationEntryCol.hasBrowsableChildren()> 
106        		<div class="col-12 col-lg-3"> 
107            		<section class="sectionSecc"> 
108            			<ul class="marginCol" title= 
109            			"${languageUtil.get(themeDisplay.getLocale(), 'sm.menu.cabecera.destinos.col')}"> 
110            				<#list navigationEntryCol.getBrowsableChildren() as navigationEntryComarca> 
111            					<#assign pathIdKey = "sm.cabecera.mapa.pathId."+navigationEntryComarca?counter/> 
112            					<li class="marginCol" id="${languageUtil.get(locale, pathIdKey)}"> 
113            						<a href="${navigationEntryComarca.getURL()}" class="aSSecc idPath" pathid="${languageUtil.get(locale, pathIdKey)}" title="${navigationEntryComarca.getName()}">${navigationEntryComarca.getName()}</a> 
114		                    	</li> 
115            				</#list> 
116		                 </ul> 
117            		</section>  
118        		</div> 
119        		</#if> 
120        	<#else> 
121        		<#if navigationEntryCol.hasBrowsableChildren()> 
122	        		<div class="d-none d-lg-block col-lg-3"> 
123	        			<#list navigationEntryCol.getBrowsableChildren() as navigationEntryDestacado> 
124	        				<section class="sectionSecc idPath"> 
125				                <a href="${navigationEntryDestacado.getURL()}" class="aSSecc mB25"> 
126				                	<#if navigationEntryDestacado.iconURL()?has_content> 
127				                	    <div class="marcMenu"> 
128                                    	<img class="imgFiltro" src="${imagesFolder}/sm/header/filtro.png" alt="${languageUtil.get(locale, 'sm.cabecera.inagen.filtro.alt')}" title="${languageUtil.get(locale, 'sm.cabecera.inagen.filtro.alt')}"> 
129                                    	<img class="imgSSecc" src="${navigationEntryDestacado.iconURL()}" alt="${languageUtil.get(locale, 'sm.template.slider.imagen')} ${navigationEntryDestacado.getName()}"/> 
130                                    	</div> 
131                                    </#if> 
132				                    <p>${navigationEntryDestacado.getName()}</p> 
133				                </a> 
134			            	</section> 
135	        			</#list> 
136			        </div> 
137		        </#if> 
138        	</#if> 
139        </#list> 
140</#macro> 
  • search engine image

    Search only in:

    Art and culture delete tag icon
    Shopping delete tag icon
    Concerts delete tag icon
    Sports delete tag icon
    Excursions delete tag icon
    Festivals delete tag icon
    Gastronomy delete tag icon
    Nature delete tag icon
    Leisure and entertainment delete tag icon
    Beaches delete tag icon
    Routes delete tag icon

    Advanced search

  • user icon
Sign in
Sign in with Facebook Sign in with Google
or
Forgotten your password?
or
Don't have an account? Sign up here
Remember password
  1. Home
  2. Portal Turismo
  3. Things to do and see
  4. Leisure and entertainment
  5. Detalle Chiringuitos y Beach Clubs
Cookies Policy

Mallorca.es uses its own and third-party cookies for internal and analytical purposes only. You can obtain more information or find out how to change the settings in our Cookies Policy.

Click Accept to accept all cookies and confirm that you have read and accepted the information given. If you wish to modify your cookie settings and select which cookies you would like to enable or configure, click the Modify settings button. Once you accept, we will not show you this message again.

Depending on the purpose for which the data obtained through cookies are processed, the Website may use:

Technical cookies: These cookies are necessary to facilitate correct navigation through our website and ensure that the content loads efficiently, as well as allowing user sessions to be identified and access to restricted parts of the portal.

Analysis cookies: They are those that allow the monitoring and analysis of the behavior of the users of the websites to which they are linked. 


MALLORCA.ES

It provides information of interest to tourists and is the official website for tourist information on the island of Mallorca.

TOURIST INFORMATION OFFICES

OIT AIRPORT

Palma de Mallorca Airport - Arrivals

Tel. 00 - 34 - 971 789 556

Email: oita@conselldemallorca.net

Monday to Friday: 8:30 - 20:00

Saturday: 8:30 - 19:00

Sunday: 8:30 a  13:30

Practical Information

  • Travelling to Mallorca
  • Where to sleep
  • Getting around
  • Where to eat
  • Know the island
  • The weather
  • Map viewer

Links of Interest

  • Consell de Mallorca
  • Cambra de Comerç de Mallorca
  • Foment del Turisme de Mallorca
  • Mallorca Convention Bureau
  • Spain.info
  • Illesbalears.travel
  • Consorci de Transports de Mallorca
  • InfoMallorcaTV
  • Hotel Business Federation of Mallorca
  • Empresa Municipal de Transports (EMT Palma)
  • Serra de Tramuntana
  • Raixa
  • Official Association of Tourist Guides of the Balearic Islands
Gobierno de España
Unión Europea © Unión Europea
Smart Island Mallorca © Smart Island Mallorca
Ciudades e Islas inteligentes
Web Map
Legal warning
Privacy Policy
Cookies Policy
Web accessibility
  • logo Instagram
  • logo Twitter
  • logo Facebook
  • logo Youtube
Consell Logo
@ 2022 Mallorca Consell
Top of page
Share Share
icon Twitter Twitter
icon Facebook Facebook
icon Whatsapp Whatsapp
icon Instagram Instagram