Възникна грешка при обработка на шаблона.
The following has evaluated to null or missing:
==> renderer.getArticle [in template "34059802103926#20121#36857" at line 30, 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#36857" at line 30, column 1]
----
1<style>
2.abs-news-title {
3font-weight: 500;
4 border-bottom: 1px solid #DDD;
5 margin-right: 8px;
6 padding-bottom: 1px;
7 line-height: 25px;
8
9}
10
11.abs-desc {
12margin-top: 3px;
13line-height: 18px;
14color: #4e4e4e !important;
15}
16.abs-more {
17 font-size: 16px;
18color: #0458d5 !important;
19}
20.row.obzov {
21 border: 1px solid #ccc;
22}
23</style>
24<div class="col-12">
25<#if entries?has_content>
26 <#list entries as curEntry>
27<#assign
28newstitle = curEntry.getTitle(locale)
29renderer = curEntry.getAssetRenderer()
30Article = renderer.getArticle()
31date = curEntry.getPublishDate()?string["dd.MM.yyyy"]
32viewURL0 = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, curEntry)
33viewURL = renderer.getURLViewInContext(renderRequest, renderResponse, viewURL0) />
34<div class="row obzov">
35<div class="col-12" >
36<h4 class="abs-news-title">${newstitle}</h4>
37</div>
38<div class="col-xxl-10 col-xl-10 col-lg-10 col-md-9 col-sm-8 col-xs-12 pl-2 pr-0 bg-white">
39<a href="${viewURL}" title='${newstitle}' area-label='${newstitle}'>
40
41<div class="mt-2">
42<#if locale == "bg_BG">
43<h3 class="abs-more">Прочетете повече » </h3>
44<#else>
45<h3 class="abs-more">Read more » </h3>
46</#if>
47</div>
48</a>
49</div>
50<div class="col-xxl-2 col-xl-2 col-lg-2 col-md-3 col-sm-4 col-xs-12 pr-0" >
51 <div>
52<h5> <i class="icon-calendar"></i> ${date}</h5>
53 </div>
54</div>
55</div>
56<br>
57</#list>
58</#if>
59</div>
Показване на 1 - 10 от 116 990 резултата.