Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> elemento [in template "10136#10174#28416" at line 33, column 50] ---- 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: ${elemento.Url_enlace.getData()} [in template "10136#10174#28416" at line 33, column 48] ----
1<link rel="stylesheet" type="text/css" href="/o/unav-principal-theme/css/custom/legacy/wb_extras.css">
2
3#if ($Fondo_banner.data == "heredado")
4 <div class="backColorFoot" >
5#else
6 <div class="$Fondo_banner.data">
7#end
8
9
10<div class='bodystyle1'>
11
12 <div class='titular2'>${Titulo_banner.getData()}
13 </div></br>
14
15#set ($IGImageLocalService = $serviceLocator.findService("com.liferay.document.library.kernel.service.DLFileEntryLocalService"))
16 #set ($url = $getterUtil.getString($Imagen.getData()))
17 #set ($uuid = $getterUtil.getString($httpUtil.getParameter($url, "uuid", false)))
18 #set ($groupId = $getterUtil.getLong($httpUtil.getParameter($url, "groupId", false)))
19 #set ($imageObj = $IGImageLocalService.getDLFileEntryByUuidAndGroupId($uuid, $groupId))
20 #set ($smallImageId = $imageObj.getSmallImageId())
21 #set ($fileNameObj = $imageObj.getTitle())
22 #set ($type = $imageObj.getExtension())
23
24
25 <img src="$Imagen.getData()&fileName=$fileNameObj.$type" width="100%" height="148px"/></br>
26
27 <p>
28 ${Cuerpo_texto.getData()}
29 </p>
30
31 #foreach($elemento in $Texto_enlace.getSiblings())
32 <p align="right">
33 <a class="blacklink" href="${elemento.Url_enlace.getData()}">${elemento.getData()}</a>
34 </p>
35 #end
36
37</div>
38</div>
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> elemento [in template "10136#10174#28497" at line 27, column 50] ---- 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: ${elemento.Url_enlace.getData()} [in template "10136#10174#28497" at line 27, column 48] ----
1<link rel="stylesheet" type="text/css" href="/o/unav-principal-theme/css/custom/legacy/wb_extras.css">
2
3<style type='text/css'>
4div.bodystyleImgBkg1 {
5 color: white;
6 background-image: url(${Imagen.getData()});
7 min-height: 136px;
8 width: 100%;
9 background-position: 0;
10 background-repeat: no-repeat;
11 background-color: black;
12 background-position: 100% 0;
13}
14</style>
15
16
17 <div class='bodystyleImgBkg1 '>
18 <div class='bodystyle0ImgBkg1'>
19 <table width="100%">
20 <tr>
21 <td width="100%">
22
23 <p class="titulo1">${Titulo_banner.getData()}</p>
24 <p style="width:90%;">$Cuerpo_texto.getData()</p>
25
26 #foreach($elemento in $Texto_enlace.getSiblings())
27 <a class="whitelink" href="${elemento.Url_enlace.getData()}">${elemento.getData()}</a>
28 #end
29 </td>
30
31 </tr>
32 </table>
33 </div>
34 </div>