An error occurred while processing the template.
The following has evaluated to null or missing:
==> articleService [in template "20098#20124#241744" at line 15, column 27]
----
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: ${articleService.getContentByClassPK(... [in template "20098#20124#241744" at line 15, column 25]
----
1<#if entries?has_content>
2 <#list entries as curEntry>
3 <div class="services-details" id="accordion">
4 <div class="card mb-3">
5 <div class="card-header d-flex" id="headingOne">
6 <a aria-controls="collapse-${curEntry?counter}" aria-expanded="true"
7 class="w-100 text-left h-100 d-flex border-0 bg-transparent collapsed text-dark-blue" data-target="#collapse-${curEntry?counter}"
8 data-toggle="collapse">
9 <p class="d-flex align-self-center mr-3 mb-0">${curEntry.getTitle(locale)}</p>
10 <i class="icon-chevron-down d-flex align-self-center ml-auto"></i>
11 </a>
12 </div>
13
14 <div aria-labelledby="headingOne" class="collapse" data-parent="#accordion" id="collapse-${curEntry?counter}">
15 ${articleService.getContentByClassPK(curEntry.classPK?number, "336310")}
16
17 </div>
18 </div>
19
20</div>
21 </#list>
22</#if>
Did you find this content useful?
Share your feedback with us so we can improve your experience.