Themenfeld Fläche
Themenfeld Fläche
Böden erhalten. Räume erkennen. Entwicklung sichern.
Fehler bei der Verarbeitung der Vorlage.
The following has evaluated to null or missing: ==> Bild [in template "20097#20123#ARTIKEL" at line 5, column 10] ---- 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 Bild.data?has_content [in template "20097#20123#ARTIKEL" at line 5, column 5] ----
1<#import "/lupo-nrw-lr73.web-resources_SERVLET_CONTEXT_/common_macros.ftl" as common>
2
3
4<section class="article">
5 <#if Bild.data?has_content>
6 <div class="image">
7 <@common.createImageTag
8 cssClass="image"
9 lazyLoad=false
10 jsonContent="${Bild.data}"
11 />
12 </div>
13 </#if>
14 <p>${Text.getData()}</p>
15</section>