An error occurred while processing the template.
For "${...}" content: Expected a string or something automatically convertible to string (number, date or boolean), or "template output" , but this has evaluated to an extended_hash (LinkedHashMap wrapped into f.t.DefaultMapAdapter): ==> data [in template "28836040233256#36598#72044" at line 15, column 15] ---- FTL stack trace ("~" means nesting-related): - Failed at: ${data} [in template "28836040233256#36598#72044" at line 15, column 13] ----
1<#-- La plantilla que usa es la de Plantilla Resultados Licitaciones -->
2
3<#if entries?has_content>
4 <#if themeDisplay.getURLCurrent()?contains("?")>
5 <h2 class="font-weight-bold mb-3">
6 Resultados
7 </h2>
8 <p class="text-grey-typography-1">
9 Se han encontrado ${searchContainer.getTotal()} resultados
10 </p>
11
12 <div>
13 <#list entries as entry>
14 <#assign data = restClient.get("/headless-delivery/v1.0/structured-contents/"+entry.getClassPK()+"/rendered-content/88738") />
15 ${data}
16 </#list>
17 </div>
18 <#else>
19 <style>
20 .pagination-bar{display:none}
21 </style>
22 </#if>
23</#if>
24
25<style>
26 .resultados-licitaciones p span{
27 font-weight:700;
28 font-size: 24px;
29 line-height: 32px;
30 letter-spacing: 0;
31}
32.resultados-licitaciones p{
33 font-weight:700 !important;
34 font-size: 24px !important;
35 line-height: 32px !important;
36 letter-spacing: 0 !important;
37}
38 </style>