Autofit Section
Um erro ocorreu enquanto processava o modelo.
The following has evaluated to null or missing:
==> titulo  [in template "10112#156075#14489" at line 2, 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 titulo.getData() != ""  [in template "10112#156075#14489" at line 2, column 5]
----
1<div class='webcontent'> 
2    <#if titulo.getData() != ""> 
3        <h3 class='titulo'> 
4            <#assign urlTemp = titulo.getChild("url").getData()/> 
5            <#if urlTemp != ""> 
6                <a href="${urlTemp}">${titulo.getData()}</a> 
7            <#else> 
8                ${titulo.getData()} 
9            </#if> 
10        </h3> 
11    </#if> 
12    <#if conteudo.getData() != ""> 
13        <div class='conteudo'> 
14            ${conteudo.getData()} 
15        </div> 
16    </#if> 
17    <div class='lista'> 
18        <#list titulo_grupo_lista.getSiblings() as grupo> 
19            <#assign textoGrupo = grupo.getData()/> 
20            <#assign cssSemGrupo = ""/> 
21             
22            <#if textoGrupo != ""> 
23            <ul class='grupo'> 
24                <li class='grupo-nome'>${textoGrupo}</li> 
25            <#else> 
26                <#assign cssSemGrupo = "-sem-grupo"/> 
27            </#if> 
28                <ul class='grupo-itens${cssSemGrupo}'> 
29                    <#list grupo.getChildren() as itemGrupo> 
30                    <#list itemGrupo.getSiblings() as filhoItemGrupo> 
31                        <#assign urlFilho = filhoItemGrupo.getChild("url")/> 
32                        <#assign destinoUrl = urlFilho.getChild("abrir_pagina").getData()/> 
33                        <li> 
34                            <#if urlFilho.getData() != ""> 
35                                <a href='${urlFilho.getData()}' target='${destinoUrl}'> 
36                                    ${filhoItemGrupo.getData()} 
37                                </a> 
38                            <#else> 
39                                ${filhoItemGrupo.getData()} 
40                            </#if> 
41                        </li> 
42                    </#list> 
43                    </#list> 
44                </ul> 
45            <#if textoGrupo != ""> 
46            </ul> 
47            </#if> 
48        </#list>    
49    </div> 
50    </div> 
51</div>