An error occurred while processing the template.
The following has evaluated to null or missing:
==> digitalplace_guideWebContentService  [in template "20097#20123#412276" at line 3, column 43]

----
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 guideWebContentService = digi...  [in template "20097#20123#412276" at line 3, column 9]
----
1<#if SectionTitle?? && SectionTitle.getSiblings()?has_content && SectionTitle.getSiblings()?size gt 1 > 
2 
3	<#assign guideWebContentService = digitalplace_guideWebContentService /> 
4 
5		<div class="multi-part-guide-navigation"> 
6 
7			<h2 id="guide-nav-header" class="h3 guide-nav-header">Contents:</h2> 
8			<nav aria-labelledby="guide-nav-header"> 
9			<ol class="nav__list list-dash spaced <#if SectionTitle.getSiblings()?size gt 8 >two-columns</#if>"> 
10				<#list SectionTitle.getSiblings() as cur_SectionTitle> 
11					<#if SectionTitle.SectionHash??> 
12						<#assign sectionHash = cur_SectionTitle.SectionHash.getData() /> 
13					<#else> 
14						<#assign sectionHash = '' /> 
15					</#if> 
16					<#assign instanceId = guideWebContentService.generateGuideSectionHash(sectionHash, cur_SectionTitle.getData() ) /> 
17					<li class="list__item ${(cur_SectionTitle?index == 0)?then('list__item--active-child','')}"> 
18						<span class="list__link is-active"> 
19							<strong class="d-none">You are here:</strong> 
20							<span class="list__link-text ">${cur_SectionTitle.getData()}</span> 
21						</span> 
22						<a class="list__link" data-index="${cur_SectionTitle?index}" data-instance-id="${instanceId}" href="#${instanceId}"> 
23							<span class="list__link-text ">${cur_SectionTitle.getData()}</span> 
24						</a> 
25					</li> 
26				</#list> 
27			</ol> 
28			</nav> 
29		</div> 
30</#if> 

An error occurred while processing the template.
The following has evaluated to null or missing:
==> digitalplace_guideWebContentService  [in template "20097#20123#412280" at line 3, column 43]

----
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 guideWebContentService = digi...  [in template "20097#20123#412280" at line 3, column 9]
----
1<#if SectionTitle?? && SectionTitle.getSiblings()?has_content> 
2 
3	<#assign guideWebContentService = digitalplace_guideWebContentService /> 
4 
5	<div class="multi-part-guide-content"> 
6	 
7		<#list SectionTitle.getSiblings() as cur_SectionTitle> 
8			<#if SectionTitle.SectionHash??> 
9				<#assign sectionHash = cur_SectionTitle.SectionHash.getData() /> 
10			<#else> 
11				<#assign sectionHash = '' /> 
12			</#if> 
13					 
14			<#assign instanceId = guideWebContentService.generateGuideSectionHash(sectionHash, cur_SectionTitle.getData() ) /> 
15			 
16			<div id="multi_part_section_${instanceId}" data-instance-id="${instanceId}" class="multi_part_section ${(cur_SectionTitle?index gt 0)?then('d-none','')}"> 
17				 
18				<article> 
19					<h2 id="${instanceId}" class="section_title">${cur_SectionTitle.getData()}</h2> 
20					<div class="section_content">${cur_SectionTitle.SectionContent.getData()}</div> 
21				</article> 
22 
23				<nav class="pagination"> 
24				 
25					<ul class="pagination__list <#if cur_SectionTitle?index == 0>justify-content-end</#if>"> 
26					 
27						<#if cur_SectionTitle?index gt 0> 
28							<#assign previousSibling = SectionTitle.getSiblings()[cur_SectionTitle?index-1] />	 
29							<#if previousSibling.SectionHash??> 
30								<#assign previousSectionHash = previousSibling.SectionHash.getData() /> 
31							<#else> 
32								<#assign previousSectionHash = '' /> 
33							</#if> 
34			 
35							<#assign previousInstanceId = guideWebContentService.generateGuideSectionHash(previousSectionHash, previousSibling.getData() ) /> 
36							 
37							<li class="pagination__item pagination__item--previous"> 
38								<a class="pagination__link multi_part_nav_previous" data-instance-id="${previousInstanceId}" href="#${previousInstanceId}"> 
39									<span class="pagination__label"><span class="pagination__icon__previous"><svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet" aria-hidden="true" focusable="false" viewBox="0 0 16 16" width="100%" height="100%"><path d="M7.5,15L1,8l6.5-7L9,2.5L4.8,7H15v2H4.8L9,13.5L7.5,15z"></path></svg></span>Previous<span class="sr-only"> page</span></span> 
40									<span class="pagination__meta-group"> 
41										<span class="pagination__meta"> 
42											${previousSibling.getData()} 
43										</span> 
44									</span> 
45								</a> 
46							</li> 
47						</#if> 
48						 
49						<#if cur_SectionTitle?has_next> 
50							<#assign nextSibling = SectionTitle.getSiblings()[cur_SectionTitle?index+1] />	 
51							 
52							<#if nextSibling.SectionHash??> 
53								<#assign nextSectionHash = nextSibling.SectionHash.getData() /> 
54							<#else> 
55								<#assign nextSectionHash = '' /> 
56							</#if> 
57			 
58							<#assign nextInstanceId = guideWebContentService.generateGuideSectionHash(nextSectionHash, nextSibling.getData() ) />							 
59							 
60							<li class="pagination__item pagination__item--next"> 
61								<a class="pagination__link multi_part_nav_next" data-instance-id="${nextInstanceId}" href="#${nextInstanceId}"> 
62									<span class="pagination__label">Next<span class="sr-only"> page</span><span class="pagination__icon__next"><svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet" aria-hidden="true" focusable="false" viewBox="0 0 16 16" width="100%" height="100%"><path d="M8.5,15L15,8L8.5,1L7,2.5L11.2,7H1v2h10.2L7,13.5L8.5,15z"></path></svg></span></span> 
63									<span class="pagination__meta-group"> 
64										<span class="pagination__meta"> 
65											${nextSibling.getData()} 
66										</span> 
67									</span> 
68								</a> 
69							</li> 
70						</#if> 
71					</ul> 
72				</nav> 
73			</div> 
74		</#list> 
75	 
76	</div> 
77</#if>