Възникна грешка при обработка на шаблона.
The following has evaluated to null or missing:
==> renderer.getArticle [in template "34059802103926#20121#36772" at line 41, column 11]
----
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 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: Article = renderer.getArticle() [in template "34059802103926#20121#36772" at line 41, column 1]
----
1<style>
2.news-title {
3font-weight: 700;
4line-height: initial;
5 font-weight: 700;
6color: #0e0e0e !important;
7}
8
9.desc {
10margin-top: 3px;
11line-height: 18px;
12color: #4e4e4e !important;
13}
14.date {
15 font-size: 12px;
16color: #444444;
17}
18.more {
19float: right;
20margin: 120px 5px 0 0;
21 width:32px;
22 height:60px;
23transform: rotate(135deg);
24 border-left: 5px solid #ffffff;
25 border-top: 5px solid #ffffff;
26 content: "";
27 display: block;
28 height: 13px;
29 width: 13px;
30}
31 .empty.portlet-dropzone {padding: 10px;}
32</style>
33<div class="row align-items-lg-start align-items-sm-start align-items-start align-items-md-start flex-lg-grow flex-sm-row flex-row flex-md-row">
34<#if entries?has_content>
35 <#list entries as curEntry>
36<#assign
37newstitle = curEntry.getTitle(locale)
38newssummary = curEntry.getSummary(locale)
39
40renderer = curEntry.getAssetRenderer()
41Article = renderer.getArticle() />
42<#if Article.getArticleImageURL(themeDisplay)??>
43<#assign image = Article.getArticleImageURL(themeDisplay)
44viewURL0 = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, curEntry)
45viewURL = renderer.getURLViewInContext(renderRequest, renderResponse, viewURL0) />
46<div class="col-lg-6 pl-3 pr-2 pb-3">
47
48<div class="row">
49
50
51
52<div class="col-xxl-4 col-xl-4 col-lg-5 col-md-6 col-sm-5 col-xs-12 pr-0" >
53<a href="${viewURL}" title='${newstitle}' area-label='${newstitle}'>
54<img class="img-fluid" src='${image}' alt="${newstitle}" style="min-width: 100%;" />
55 </a>
56</div>
57<div class="col-xxl-8 col-xl-8 col-lg-7 col-md-6 col-sm-7 col-xs-12 pl-2 pr-0 bg-white">
58<a href="${viewURL}" title='${newstitle}' area-label='${newstitle}'>
59<div class="read-more"><div class="more"></div></div>
60
61<div class="news-title"> <p>${curEntry.getTitle(locale)}</p> </div>
62<div class="desc"> ${curEntry.getSummary(locale)}</div>
63</a>
64</div>
65</div>
66</div>
67
68<#else>
69</#if>
70</#list>
71</#if>
72</div>
Показване на 1 - 10 от 6 408 резултата.