Fast links
- Plan Emergencia Facultad
- Más contenido Departamento
- WebMail GEOLOGÍA
- WebMail UNIOVI
- Facultad de Geología
- Universidad de Oviedo
- Intranet de Uniovi
- Uniovi Directo (SIES - GAUSS)
- Campus Virtual Uniovi
- Portal del investigador
- Biblioteca Universidad de Oviedo
- Vocabulario GEOLOGÍA
- Reserva de vehículos del departamento
An error occurred while processing the template.
Multiple compatible overloaded variations were found with the same priority. The FTL type of the argument values were: Null. The Java type of the argument values were: Null. The matching overload was searched among these members: com.liferay.portal.kernel.util.Validator_IW.isNotNull(String), com.liferay.portal.kernel.util.Validator_IW.isNotNull(Long), com.liferay.portal.kernel.util.Validator_IW.isNotNull(Object) ---- FTL stack trace ("~" means nesting-related): - Failed at: #if (validator.isNotNull(asignaturas)... [in template "38642#38670#826314" at line 85, column 9] ----
1<div class="bloqueDatos mt-3">
2 <div class="imagen">
3 <#if (validator.isNotNull(foto) && foto.getData()?trim != "") >
4 <a href="${foto.getData()}" rel="prettyPhoto[gal_noticia]">
5 <img src="${foto.getData()}" title="${foto.texto_alternativo.getData()}"/>
6 </a>
7 </#if>
8 </div>
9
10 <h3>${apellidos.getData()}, ${nombre.getData()}</h3>
11
12 <dl>
13 <#if (validator.isNotNull(categoria) && categoria.getData()?trim != "") >
14 <dt>${languageUtil.get(locale,"portaleswebuniovi.categoria")}: </dt>
15 <dd>${categoria.getData()}</dd>
16 </#if>
17
18 <#if (validator.isNotNull(telefono) && telefono.getData()?trim != "") >
19 <dt class="telf">${languageUtil.get(locale,"portaleswebuniovi.telefono")}: </dt>
20 <dd>${telefono.getData()}</dd>
21 </#if>
22
23 <#if (validator.isNotNull(correo) && correo.getData()?trim != "" && correo.getSiblings()[0].getData() != "") >
24 <dt class="mail">${languageUtil.get(locale,"portaleswebuniovi.correo")}: </dt>
25 <dd><a href="mailto:${correo.getData()}">${correo.getData()}</a></dd>
26 </#if>
27
28 <#if (validator.isNotNull(despacho) && despacho.getData()?trim != "") >
29 <dt class="situacion">${languageUtil.get(locale,"portaleswebuniovi.despacho")}: </dt>
30 <dd>${despacho.getData()}</dd>
31 </#if>
32
33 <#if (validator.isNotNull(fichaPersonal) && fichaPersonal.getData()?trim != "") >
34 <dt>${languageUtil.get(locale,"portaleswebuniovi.fichapersonal")}:</dt>
35 <dd><a href="${fichaPersonal.getData()}" title="${fichaPersonal.texto.getData()}">${fichaPersonal.texto.getData()}</a></dd>
36 </#if>
37
38 <#if (validator.isNotNull(webPersonal) && webPersonal.getData()?trim != "") >
39 <dt class="web">${languageUtil.get(locale,"portaleswebuniovi.webpersonal")}:</dt>
40 <dd><a href="${webPersonal.getData()}" title="${webPersonal.webPersonaltexto.getData()}">${webPersonal.webPersonaltexto.getData()}</a></dd>
41 </#if>
42
43 <#if (validator.isNotNull(cvbreve) && cvbreve.getData()?trim != "") >
44 <dt>${languageUtil.get(locale,"portaleswebuniovi.cvbreve")}: </dt>
45 <dd>${cvbreve.getData()}</dd>
46 </#if>
47
48 <#if (validator.isNotNull(cv) && cv.getData()?trim != "") >
49 <dt>${languageUtil.get(locale,"portaleswebuniovi.cv")}:</dt>
50 <dd><a href="${cv.getData()}" title="$c{v.getData()}">${cv.cv_texto.getData()}</a></dd>
51 </#if>
52 </dl>
53
54 <#if (validator.isNotNull(areasInteres) && areasInteres.getSiblings()[0].getData()?trim != "") >
55 <div class="areasInteres">
56 <h4>${languageUtil.get(locale,"portaleswebuniovi.areasinteres")}: </h4>
57 <ul class="columnas2">
58 <#list areasInteres.getSiblings() as areax >
59 <#if (areax.getData()?trim != "") >
60 <li>${areax.getData()}</li>
61 </#if>
62 </#list>
63 </ul>
64 </div>
65 </#if>
66
67 <#if (validator.isNotNull(publicaciones) && publicaciones.getSiblings()[0].getData()?trim != "") >
68 <div class="publicaciones">
69 <h4>${languageUtil.get(locale,"portaleswebuniovi.publicacionesdestacadas")}: </h4>
70 <ul>
71 <#list publicaciones.getSiblings() as publicacionx >
72 <#if (publicacionx.getData()?trim != "") >
73 <li>
74 ${publicacionx.getData()}
75 <#if (validator.isNotNull(publicacionx.enlace) && publicacionx.enlace.getData()?trim != "") >
76 : <a href="${publicacionx.enlace.getData()}" title="${publicacionx.textoEnlace.getData()}">${publicacionx.textoEnlace.getData()}</a>
77 </#if>
78 </li>
79 </#if>
80 </#list>
81 </ul>
82 </div>
83 </#if>
84
85 <#if (validator.isNotNull(asignaturas) && asignaturas.getData()?trim != "") >
86 <h4>Asignaturas impartidas:</h4> ${asignaturas.getData()}
87 </#if>
88</div>