Appleby improves as animal welfare issues are lowest in nine years

An error occurred while processing the template.
The following has evaluated to null or missing:
==> ShortDescription  [in template "10108#260730#NEWS-WEB-CONTENT-TEMPLATE" at line 16, 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: ${ShortDescription.getData()}  [in template "10108#260730#NEWS-WEB-CONTENT-TEMPLATE" at line 16, 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<#if Name?has_content> 
10<div class="title"> 
11    <h1>${Name.getData()}</h1> 
12</div> 
13<#else> 
14 
15<div class="short"> 
16    <h1>${ShortDescription.getData()}</h1> 
17</div>  
18</#if> 
19 
20<div class="assoc-image"> 
21	<img src="${AssociatedImage.getData()}"/> 
22</div> 
23 
24<div class="body"> 
25${Body.getData()} 
26</div>