Hiba jelentkezett a sablon feldolgozása során.
The following has evaluated to null or missing:
==> tooltip  [in template "10155#10195#11949" at line 5, column 14]

----
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 tooltip.getData()?has_content  [in template "10155#10195#11949" at line 5, column 9]
----
1<div class="buttons-box"> 
2    <h2>${title.getData()}</h2> 
3    <ul class="boxTooltip" style="background-image: url('${img.getData()}');" aria-describedby="${randomNamespace}tooltip"> 
4      <span id="${randomNamespace}tooltip"> 
5        <#if tooltip.getData()?has_content > 
6            ${tooltip.getData()} 
7        </#if> 
8      </span> 
9 
10        <#if buttontext.getSiblings()?has_content > 
11            <#list buttontext.getSiblings() as cur_buttontext > 
12                <li> 
13                    <a class="box-tooltip-button" target="_blank" href="${cur_buttontext.buttonurl.getFriendlyUrl()}"> 
14                        ${cur_buttontext.getData()} &gt; 
15                        <#if tooltip.getData()?has_content > 
16                            <span class="sr-only">${tooltip.getData()}</span> 
17                        </#if> 
18                    </a> 
19                </li> 
20            </#list> 
21        </#if> 
22    </ul> 
23</div> 
Hiba jelentkezett a sablon feldolgozása során.
The following has evaluated to null or missing:
==> tooltip  [in template "10155#10195#11949" at line 5, column 14]

----
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 tooltip.getData()?has_content  [in template "10155#10195#11949" at line 5, column 9]
----
1<div class="buttons-box"> 
2    <h2>${title.getData()}</h2> 
3    <ul class="boxTooltip" style="background-image: url('${img.getData()}');" aria-describedby="${randomNamespace}tooltip"> 
4      <span id="${randomNamespace}tooltip"> 
5        <#if tooltip.getData()?has_content > 
6            ${tooltip.getData()} 
7        </#if> 
8      </span> 
9 
10        <#if buttontext.getSiblings()?has_content > 
11            <#list buttontext.getSiblings() as cur_buttontext > 
12                <li> 
13                    <a class="box-tooltip-button" target="_blank" href="${cur_buttontext.buttonurl.getFriendlyUrl()}"> 
14                        ${cur_buttontext.getData()} &gt; 
15                        <#if tooltip.getData()?has_content > 
16                            <span class="sr-only">${tooltip.getData()}</span> 
17                        </#if> 
18                    </a> 
19                </li> 
20            </#list> 
21        </#if> 
22    </ul> 
23</div>