Asset Publisher

An error occurred while processing the template.
The following has evaluated to null or missing:
==> products  [in template "198971#199017#2629005" at line 14, column 7]

----
Tip: If the failing expression is known to be 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: ${products}  [in template "198971#199017#2629005" at line 14, column 5]
----
1<#-- 
2Application display 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 
9<#-- <p><b>${entry.getTitle(locale)}</b></p> --> 
10<#assign liferay_ui = taglibLiferayHash["/META-INF/liferay-ui.tld"] /> 
11 
12<#-- <h3>${childSite}</h3><br> --> 
13<h3>${unionLogo}</h3><br> 
14<h3>${products}</h3><br> 
15 
16<#list entries as entry> 
17        <#assign assetRenderer = entry.getAssetRenderer() /> 
18        <@liferay_ui["asset-display"] 
19            assetEntry=entry 
20            assetRenderer=assetRenderer 
21            showExtraInfo=false /> 
22        
23</#list>