Calibration Methods Guidelines
An error occurred while processing the template.
The following has evaluated to null or missing: ==> renderTitle [in template "10112#321552#900817" at line 3, column 28] ---- 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 getterUtil.getBoolean(renderTitle... [in template "10112#321552#900817" at line 3, column 1] ----
1<div class="template-ct1">
2 <div class="block-display">
3<#if getterUtil.getBoolean(renderTitle.getData())>
4 <h1>$reserved-article-title.getData()</h1>
5</#if>
6<#if (headline.getData())??>
7 <h3>${headline.getData()}</h3>
8</#if>
9
10<#if (date.getData())??>
11 <p class="date">${date.getData()}</p>
12</#if>
13</div>
14
15<#if (textFieldSet.text.getData())??>
16 ${textFieldSet.text.getData()}
17</#if>