Curso Cero
¿Quién es quién?
Aquí puedes encontrar a las personas que tienes que conocer durante tu primer cuso de carrera. Estos serán los profesores que tendrás y las asignaturas que imparten y parte de la junta directiva de la Facultad.
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> cur_titulo_departamento_imagen.telefono [in template "10136#10174#29258820" at line 21, column 32] ---- 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: #if cur_titulo_departamento_imagen.te... [in template "10136#10174#29258820" at line 21, column 27] ----
1<div class="unav-people-list">
2 <h2 class="unav__title unav-people-list__main-title">${titulo.getData()}</h2>
3
4 <#if titulo_departamento.getSiblings()?has_content>
5 <#list titulo_departamento.getSiblings() as cur_titulo_departamento>
6 <h3 class="unav__title unav-people-list__title">${cur_titulo_departamento.getData()}</h3>
7
8 <div class="unav-people-list__people-container">
9 <#if cur_titulo_departamento.imagen.getSiblings()?has_content>
10 <#list cur_titulo_departamento.imagen.getSiblings() as cur_titulo_departamento_imagen>
11 <div class="unav-people-list__people-item" tabindex="0">
12 <#if cur_titulo_departamento_imagen.getData()!="">
13 <figure class="unav-people-list__user-figure" aria-hidden=true><img alt="${cur_titulo_departamento_imagen.nombre_apellidos.getData()}" class="unav-people-list__user-img" src="${cur_titulo_departamento_imagen.getData()}" /></figure>
14 </#if>
15 <p class="unav__text unav-people-list__name">${cur_titulo_departamento_imagen.nombre_apellidos.getData()}</p>
16
17 <p class="unav__text unav-people-list__job">${cur_titulo_departamento_imagen.posicion_trabajo.getData()}</p>
18
19
20
21 <#if cur_titulo_departamento_imagen.telefono.getData()!="">
22 <p class="unav__text unav-people-list__department" style="margin-bottom:0px">${cur_titulo_departamento_imagen.departamento.getData()}</p>
23 <p class="unav__text unav-people-list__department">${cur_titulo_departamento_imagen.telefono.getData()}</p>
24
25 <#else>
26 <p class="unav__text unav-people-list__department" >${cur_titulo_departamento_imagen.departamento.getData()}</p>
27 </#if>
28 <p class="unav__text unav-people-list__email"><a class="unav__text unav-people-list__email" href="mailto:${cur_titulo_departamento_imagen.email.getData()}">${cur_titulo_departamento_imagen.email.getData()}</a></p>
29
30 <#if cur_titulo_departamento_imagen.enlace_cv.getData()!="">
31
32 <a class="unav-people__arrow-link unav-link__arrow-link"
33
34 href="${cur_titulo_departamento_imagen.enlace_cv.getData()}" target="_self">Ver CV
35 <span class="sr-only">"Ver CV de ${cur_titulo_departamento_imagen.nombre_apellidos.getData()}"</span></a>
36 </#if>
37 </div>
38 </#list>
39 </#if>
40 </div>
41 </#list>
42 </#if>
43</div>
44
45<style>
46 .aui .unav-link__arrow-link::before{
47 content: "";
48 }
49 .aui .unav-link__arrow-link::after{
50 content: "";
51 }
52</style>