An error occurred while processing the template.
Expression summary2 is undefined on line 18, column 20 in 10155#10195#42263.
1<article class="noticia-estandar"> 2 <#if audio??> 3 <#if audio.getData() !=""> 4 <a class="audiodescripcion" title="Descargar audio" href="${audio.getData()}" target="_blank">Descargar audio (MP3)</a> 5 </#if> 6 </#if> 7 <header> 8 <h1>${title.getData()}</h1> 9 <p class="fecha-publicacion"> 10 <#assign date_Data = getterUtil.getLong(date.getData())> 11 <#if (date_Data > 0)> 12 <#assign date_DateObj = dateUtil.newDate(date_Data)> 13 14 ${dateUtil.getDate(date_DateObj, "dd MMMM yyyy", locale)} 15 </#if> 16 </p> 17 <summary>${summary.getData()}</summary> 18 <summary>${summary2.getData()}</summary> 19 20 </header> 21 <#if image.getData() !=""> 22 <figure class="imgLiquidFill imgLiquid"> 23 <img alt="${altText.getData()}" src="${image.getData()}" /> 24 <#if footer??> 25 <figcaption> 26 <p>${footer.getData()}</p> 27 </figcaption> 28 </#if> 29 </figure> 30 </#if> 31 <p> 32 ${body.getData()} 33 </p> 34</article> 35<script> 36 $(document).ready(function () { 37 $(".imgLiquidFill").imgLiquid({fill:true}); 38 }); 39</script>