در حین انجام عملیات خطایی رخ داده است.
The following has evaluated to null or missing:
==> $name  [in template "20097#20123#101220" at line 11, column 35]

----
Tip: Variable references must not start with "$", unless the "$" is really part of the variable name.
----
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 name.read_more_text?? && $name.re...  [in template "20097#20123#101220" at line 11, column 5]
----
1<#if name.link?? && name.link.getData()!= ""> 
2    <a href="${name.link.getData()}" 
3   class="esra-hpp_content esra-hpp_content-border esra-hpp_featured" 
4   target="_blank"> 
5<#else> 
6    <div class="esra-hpp_content esra-hpp_content-border esra-hpp_featured"> 
7</#if> 
8<#if name.icon?? && name.icon.getData()!= ""> 
9        <img src="${name.icon.getData()}" class="esra-resize esra-border-bottom"/> 
10</#if> 
11    <#if name.read_more_text?? && $name.read_more_text.getData()!= "" > 
12        <span class="esra-hpp__more esra-bottom-link">${name.read_more_text.getData()}</span> 
13    </#if> 
14 
15    </div> 
16 
17<#if name.link?? && name.link.getData()!= "" > 
18    </a> 
19<#else> 
20    </div> 
21</#if>