Rassegna stampa - header
Press review
Wydawca treści
Wystąpił błąd podczas przetwarzania szablonu.
The following has evaluated to null or missing: ==> curEntry.getAssetRenderer().getAssetObject().getFileName [in template "20116#20160#301658" at line 22, column 124] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- 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: ${curEntry.getAssetRenderer().getAsse... [in template "20116#20160#301658" at line 22, column 122] ----
1<style>
2.rassegna-wrapper p {
3 margin: 0;
4}
5
6div.rassegna-wrapper {
7 background-color:#FFF;
8 padding:10px;
9}
10
11
12p.rassegna-subtitle {
13 font-size: 11px;
14 margin-bottom: 15px;
15}
16</style>
17
18<div class="rassegna-wrapper">
19 <#if entries?has_content>
20 <#list entries as curEntry>
21 <div>
22 <p>>><a href="${themeDisplay.getPortalURL()}/documents/${curEntry.getGroupId()}/${curEntry.getEntryId()}/${curEntry.getAssetRenderer().getAssetObject().getFileName()}/${curEntry.getClassUuid()}" target="_blank">
23 ${curEntry.getTitle(locale)}
24 </a></p>
25 <p class="rassegna-subtitle">
26 ${curEntry.getDescription()}
27 </p>
28 </div>
29 </#list>
30 </#if>
31</div>