null
Atrás
AppsTuentiFragment
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> imagenddm.getAttribute("alt") [in template "2233237#2233283#105008" at line 15, column 56] ---- Tip: If the failing expression is known to be 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: ${imagenddm.getAttribute("alt")} [in template "2233237#2233283#105008" at line 15, column 54] ----
1<#--
2Display templates are used to lay out the fields defined in a data
3definition.
4
5Please use the left panel to quickly add commonly used variables.
6Autocomplete is also available and can be invoked by typing "${".
7-->
8<div class="section-app" data-slide-color="blue">
9 <div class="container">
10 <h2 class="title">${titulo.getData()}</h2>
11
12 <div class="content-app">
13 <div class="content-app-image">
14 <div class="cols-image">
15 <p><img alt="${imagenddm.getAttribute("alt")}" title="${imagenddm.title.getData()}" data-fileentryid="${imagenddm.getAttribute("fileEntryId")}" src="${imagenddm.getData()}" class="lazyload"/></p>
16 </div>
17 <div class="cols-app-logo">
18 <p class="text">${texto.getData()}</p>
19
20 <#if button.imagengoogle.getData()?? && button.imagengoogle.getData() != "">
21 <a class="btn-logo" href="${button.imagengoogle.enlacegoogle.getData()}" rel="nofollow" target="_blank" rel="noopener noreferrer">
22 <img alt="${button.imagengoogle.getAttribute("alt")}" title="${button.imagengoogle.titlegoogle.getData()}" data-fileentryid="${button.imagengoogle.getAttribute("fileEntryId")}" src="${button.imagengoogle.getData()}" class="lazyload"/>
23 </a>
24 </#if>
25
26 <#if buttonapple.imagenapple.getData()?? && buttonapple.imagenapple.getData() != "">
27 <a class="btn-logo" href="${buttonapple.imagenapple.enlaceapple.getData()}" rel="nofollow" target="_blank" rel="noopener noreferrer">
28 <img alt="${buttonapple.imagenapple.getAttribute("alt")}" title="${buttonapple.imagenapple.titleapple.getData()}" data-fileentryid="${buttonapple.imagenapple.getAttribute("fileEntryId")}" src="${buttonapple.imagenapple.getData()}" class="lazyload"/>
29 </a>
30 </#if>
31 </div>
32 </div>
33
34 <div class="content-app-list">
35 <#if lista.getSiblings()?has_content>
36 <ul class="list-app">
37 <#list lista.getSiblings() as cur_lista>
38 <li class="item-app"> ${cur_lista.getData()} </li>
39 </#list>
40 </ul>
41 </#if>
42 </div>
43 </div>
44 </div>
45</div>