An error occurred while processing the template.
The following has evaluated to null or missing:
==> title_en  [in template "44616#44647#4034385" at line 34, column 24]

----
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 k == title_en  [in template "44616#44647#4034385" at line 34, column 14]
----
1<#assign 
2		title = '' 
3 
4		description = '' 
5	/> 
6 
7	<#if assetCategory??> 
8		<#assign 
9			title = assetCategory.getTitle(locale) 
10title_en = assetCategory.getTitle('en_US') 
11			description = assetCategory.getDescription(locale) 
12		/> 
13	</#if> 
14	<#assign myHash = {  
15									"Electricity Meters + Modules":"Measurement + Sensing", 
16									"Gas Meters + Modules":"Measurement + Sensing", 
17									"Sensing + Control":"Measurement + Sensing", 
18									"Thermal Energy Meters + Modules":"Measurement + Sensing", 
19									"Water Meters + Modules":"Measurement + Sensing", 
20									"Grid Management":"Networks + Operations", 
21									"Mobile Meter Reading":"Networks + Operations", 
22									"Network Infrastructure + Management ":"Networks + Operations", 
23									"Operations Management":"Networks + Operations", 
24									"Smart Cities":"Networks + Operations", 
25									"Distributed Energy Management":"Software + Services", 
26									"Energy Forecasting":"Software + Services", 
27									"Meter Data Management + Analytics":"Software + Services", 
28									"Prepayment":"Software + Services", 
29									"Services":"Software + Services" 
30	}> 
31<nav class="breadcrumb-navigation" aria-label="breadcrumb"> 
32			<ol class="breadcrumb-list"> 
33				 <#list myHash?keys as k> 
34             <#if k == title_en> 
35									<li class="breadcrumb-item"><a id="level0CategoryCrumb" href='${languageUtil.get(locale, "what-we-offer-products-url")}' class="breadcrumb-link">${myHash[k]}</a></li> 
36							 <li class="breadcrumb-item" aria-current="page">${htmlUtil.escape(title)}</li> 
37              </#if> 
38          </#list> 
39			</ol> 
40		</nav>	 
41<!--	<div class="container-fluid container-fluid-max-xl"> --> 
42<div class="category-detail"> 
43	<div class="container-fluid"> 
44		<h1 class="category-title">${htmlUtil.escape(title)}</h1> 
45		<p class="category-description">${description}</p> 
46	</div> 
47</div> 

Filter Products

Clear