An error occurred while processing the template.
The following has evaluated to null or missing: ==> Name [in template "10108#260730#NEWS-WEB-CONTENT-TEMPLATE" at line 10, column 11] ---- 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: ${Name.getData()} [in template "10108#260730#NEWS-WEB-CONTENT-TEMPLATE" at line 10, column 9] ----
1<#--
2Web content templates are used to lay out the fields defined in a web
3content structure.
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<div class="title">
10 <h1>${Name.getData()}</h1>
11</div>
12
13<div class="short">
14 <h1>${ShortDescription.getData()}</h1>
15</div>
16
17<div class="assoc-image">
18 <img src="${AssociatedImage.getData()}"/>
19</div>
20
21<div class="body">
22${Body.getData()}
23</div>