Er trad een fout op tijdens de verwerking van de sjabloon.
The following has evaluated to null or missing:
==> httpComponentsUtil  [in template "20101#20128#216175" at line 4, column 34]

----
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: #if complete_url?has_content && httpC...  [in template "20101#20128#216175" at line 4, column 1]
----
1<#if umcg_library_path??><#import umcg_library_path as umcg_library /></#if> 
2<#assign search_value = ""/> 
3<#assign complete_url = request.getAttribute("CURRENT_COMPLETE_URL")!'' /> 
4<#if complete_url?has_content && httpComponentsUtil.getParameter(complete_url, "q", false)?has_content> 
5    <#assign search_value =  htmlUtil.escapeAttribute(httpComponentsUtil.decodeURL(httpComponentsUtil.getParameter(complete_url, "q", false))) /> 
6 /> 
7</#if> 
8 
9<#assign breadcrumb_url = umcg_library.fixExtraFieldUrl((themeDisplay.getScopeGroup().getExpandoBridge().getAttribute("BaseUrl"))!"/") /> 
10<#assign type = "text" /> 
11 
12<#if getterUtil.getBoolean(ToonZoekveld.getData())> 
13	<#assign type = "search" /> 
14</#if> 
15 
16<#if Tekststijl??> 
17    <#assign classes = 'hero--theme-${Tekststijl.getData()}' /> 
18</#if> 
19 
20<#if ToonSmal??> 
21    <#assign full_width = !getterUtil.getBoolean(ToonSmal.getData())!false /> 
22</#if> 
23 
24<#if Afbeelding.getData()?? && Afbeelding.getData() != ""> 
25    <@umcg_library.hero 
26        type=type 
27        classes=classes!'' 
28        has_breadcrumb=getterUtil.getBoolean(ToonHomeKnop.getData()) 
29        breadcrumb_title='Home' 
30        breadcrumb_url=breadcrumb_url 
31        title=Titel.getData()!'' 
32        subtitle=Subtitel.getData()!'' 
33        show_subtitle=Subtitel.getData()?has_content 
34        is_main=true 
35        file_id=Afbeelding.getAttribute("fileEntryId") 
36        full_width=full_width!false 
37        placeholder='Zoek een vacature' 
38        search_value=search_value 
39        search_id=.vars['reserved-article-id'].data 
40        picture_html=umcgContentService.getHeroPictureHtml((Afbeelding.getAttribute('fileEntryId')!'0')?number, (Afbeelding.getAttribute('alt'))!'') 
41
42        <img alt="${Afbeelding.getAttribute("alt")}" src="${Afbeelding.getData()}" /> 
43    </@umcg_library.hero> 
44</#if> 
Er trad een fout op tijdens de verwerking van de sjabloon.
The following has evaluated to null or missing:
==> umcg_library  [in template "20101#20128#CONTACT" at line 60, column 31]

----
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: @umcg_library.svg_icon name="email" w...  [in template "20101#20128#CONTACT" at line 60, column 29]
----
1<#if umcg_library_path??><#import umcg_library_path as umcg_library /></#if> 
2<#if ContactNaam?? && ContactNaam.getData()?has_content> 
3  <#assign name = ContactNaam.getData()/> 
4<#else> 
5  <#assign name = .vars['reserved-article-title'].data/> 
6</#if> 
7 
8<#if locale.toString()?contains("nl")> 
9    <#assign stuureenbericht = "Stuur een bericht" /> 
10    <#assign stuureenwhatsapp = "Stuur een whatsapp-bericht"/> 
11<#else> 
12    <#assign stuureenbericht = "Send a message" /> 
13    <#assign stuureenwhatsapp = "Send a whatsapp-message"/> 
14</#if> 
15<#assign title=Contact.ContactTitel.getData() /> 
16<#assign text=Contact.ContactContent.getData() /> 
17<#assign phone=Contact.ContactTelefoonnummer.getData() /> 
18<#assign email=Contact.ContactLinkEmailadres.getData() /> 
19<#assign linkedin=Contact.ContactLinkedin.getData() /> 
20<#assign whatsapp=Contact.ContactWhatsapp.getData() /> 
21<#assign show_email=getterUtil.getBoolean(Contact.ContactLinkEmailadres.ContactToonEmailadres.getData())/> 
22<#assign show_visual=true /> 
23<#assign wb_visual=true /> 
24<#assign profile={ 
25        'info': { 
26            'name': name, 
27            'function': Contact.ContactFunctie.getData() 
28        }, 
29        'image': Contact.ContactAfbeelding.getData(), 
30        'alt_image': Contact.ContactAfbeelding.getAttribute('alt') 
31    } /> 
32 
33<#assign has_profile = false /> 
34    <#if profile?has_content> 
35        <#assign has_profile = true /> 
36    </#if> 
37<#if getterUtil.getBoolean((Contact.ToonSmal.getData())!'false')> 
38<div class="row justify-content-center"> 
39 
40    <div class="col-12 col-lg-10 col-xl-8"> 
41</#if> 
42    <div class="question-block ${has_profile?then('', 'question-block-without-profile')}" js-hook-siteimprove="Contact"> 
43        <#if title?has_content> 
44            <h2>${title}</h2> 
45        </#if> 
46        <#if text?has_content> 
47        <p> 
48                ${text}</p> 
49        </#if> 
50        <ul> 
51            <#if email?has_content> 
52                <li> 
53                    <#if show_email> 
54                        <a href="mailto:${email?lower_case}"> 
55                            <@umcg_library.svg_icon name="email" width="25" height="25" /> 
56                            <span class="title">${email?lower_case}</span> 
57                        </a> 
58                    <#else> 
59                        <a href="mailto:${email?lower_case}"> 
60                            <@umcg_library.svg_icon name="email" width="25" height="25" /> 
61                            <span class="title">${stuureenbericht}</span> 
62                        </a> 
63                    </#if> 
64                </li> 
65            </#if> 
66            <#if phone?has_content> 
67                <#assign tel = phone?replace("[^\\d]","",  "r") /> 
68                <li> 
69                    <a href="tel:${tel}"> 
70                        <@umcg_library.svg_icon name="phone" width="25" height="25" /> 
71                        <span class="title">${phone}</span> 
72                    </a> 
73                </li> 
74            </#if> 
75            <#if whatsapp?has_content> 
76                <li> 
77                    <a href="https://wa.me/${whatsapp}"> 
78                        <@umcg_library.svg_icon name="whatsapp" width="25" height="25" /> 
79                        <span class="title">${stuureenwhatsapp}</span> 
80                    </a> 
81                </li> 
82            </#if> 
83            <#if linkedin?has_content> 
84                <li> 
85                    <a href="${linkedin}"> 
86                        <@umcg_library.svg_icon name="linkedin" width="25" height="25" /> 
87                        <span class="title">LinkedIn</span> 
88                    </a> 
89                </li> 
90            </#if> 
91        </ul> 
92            <@umcg_library.profile_card profile=profile classes='' /> 
93 
94        <#if show_visual> 
95            <@umcg_library.visual classes=wb_visual?then('', 'visual--mirrored') /> 
96        </#if> 
97    </div> 
98<#if getterUtil.getBoolean((Contact.ToonSmal.getData())!'false')> 
99  </div> 
100 
101        </div> 
102</#if>