Vivir y disfrutar en una ciudad rejuvenecida

Apoyo al deporte femenino

Colaborar con los clubes y los centros educativos para seguir fomentando el deporte femenino desde las bases a los torneos de élite.

Iniciativas

  • Aumento de las subvenciones un 15% al deporte femenino federado.
  • Fomentar la práctica deportiva entre chicas y mujeres atendiendo a diferentes orígenes, culturas y necesidades.
Deportes, salud y bienestar

Donostia ciudad del deporte

Derechos Humanos, Igualdad e Inclusión

Igualdad como eje transversal

Te puede interesar

Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> page.friendlyUrlPath  [in template "32250#32291#1004850" at line 15, column 107]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign enlace = page.friendlyUrlPath  [in template "32250#32291#1004850" at line 15, column 89]
----
1<#if entries?has_content> 
2   <div class="row align-items-start"> 
3      <div class="col col-lg-12 col-sm-12 col-12 col-md-12"> 
4         <div class="lfr-layout-structure-item-lista"> 
5            <ul class="dtik-list dtik-list--padding-left m-show-bullet"> 
6               <#list entries as entry> 
7								 <#assign classpk = entry.getClassPK() 
8            							compromiso = restClient.get("/headless-delivery/v1.0/structured-contents/${classpk}")/> 
9								 <#assign enlace = ""/> 
10								 <#assign namePage = entry.getTitle(locale)/> 
11								 <#list compromiso.contentFields as field> 
12									 <#if field.name = "link"  && field.contentFieldValue?has_content> 
13										 <#assign page = restClient.get("/headless-delivery/v1.0/sites/${themeDisplay.getScopeGroupId()}/site-pages/${field.contentFieldValue.link}")/> 
14										 <#if page?? && page?has_content> 
15										 	<#assign enlace = page.friendlyUrlPath/> 
16											<#assign namePage = page.title/> 
17										 </#if> 
18									 </#if> 
19								 </#list> 
20                        <li class="dtik-list__element"> 
21                           <div class="dtik-link"> 
22                              <a class="dtik-link__text dtik-font--body-small m-primary m-hover-underline" href="${enlace}">${namePage}</a> 
23                           </div> 
24                        </li> 
25                </#list> 
26           </ul> 
27        </div> 
28     </div> 
29  </div> 
30</#if>