Fehler bei der Verarbeitung der Vorlage.
The following has evaluated to null or missing:
==> articleService.getDataPolicyJournalArticle  [in template "20155#20201#7922357" at line 10, column 30]

----
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: #assign dataPolicyArticle = articleSe...  [in template "20155#20201#7922357" at line 10, column 1]
----
1<#-- 
2Widget templates can be used to modify the look of a 
3specific application. 
4 
5Please use the left panel to quickly add commonly used variables. 
6Autocomplete is also available and can be invoked by typing "${". 
7--> 
8<#assign articleService = serviceLocator.findService("com.bnpparibas.leasingsolutions.ecc.core.util.ArticleService")> 
9 
10<#assign dataPolicyArticle = articleService.getDataPolicyJournalArticle(request)!> 
11 
12<style> 
13.aui #bplsguest { 
14    background-color: #fff!important; 
15
16#cookies-data-policy { 
17    word-wrap: break-word; 
18
19#cookies-data-policy-back-btn { 
20    display: flex; 
21    min-width: 80px; 
22    max-width: 250px; 
23    padding: 6px 11px; 
24    justify-content: center; 
25    align-items: center; 
26    gap: 4px; 
27    border-radius: 3px; 
28    background: #FAFAFA; 
29    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); 
30    width: fit-content; 
31
32#cookies-data-policy-back-btn svg { 
33    width: 9px; 
34    height: 9px; 
35
36#cookies-data-policy-back-btn { 
37    margin-top: 24px; 
38    margin-bottom: 24px; 
39
40#banner { 
41    border-bottom: 1px solid #008352; 
42    height: 47px; 
43
44#heading { 
45    display: none; 
46
47#cookies-data-policy .main-title { 
48    color: #202020; 
49    font-feature-settings: 'liga' off, 'clig' off; 
50    font-family: 'OpenSans-regular', Helvetica, Arial, sans-serif; 
51    font-size: 32px; 
52    font-style: normal; 
53    font-weight: 300; 
54    line-height: normal; 
55
56@media (max-width: 767px) { 
57    #cookies-data-policy-back-btn { 
58        width: -webkit-fill-available; 
59        margin: 24px auto; 
60
61
62     
63</style> 
64<div id="cookies-data-policy" class="mb-3" data-articleId=""> 
65    <a id="cookies-data-policy-back-btn" class="btn btn-secondary" href="/"> 
66        <svg xmlns="http://www.w3.org/2000/svg" width="9" height="11" viewBox="0 0 9 11" fill="none"> 
67            <path d="M6.75 1L2.25 5.5L6.75 10" stroke="black" stroke-linecap="round" stroke-linejoin="round"/> 
68        </svg> 
69       ${languageUtil.get(themeDisplay.getLocale(), "label.button.datapolicy.back")} 
70    </a> 
71    <div id="cookies-data-policy-content" class=""> 
72        <#if dataPolicyArticle?has_content> 
73         ${dataPolicyArticle.getContent()} 
74        </#if> 
75    </div> 
76</div>