Autofit Section
- Portal dos Precedentes
- Destaque
- TJRJ mantém decisão que denegou ordem em HC para extração artesanal do óleo canabidiol
Autofit Section
Um erro ocorreu enquanto processava o modelo.
The following has evaluated to null or missing: ==> destaque.autorPost [in template "10112#156075#91628965" at line 9, column 52] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- 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: ${destaque.autorPost.getData()} [in template "10112#156075#91628965" at line 9, column 50] ----
1<#setting locale="pt_BR">
2
3<div class="noticia">
4 <div class="titulo portlet-title-text">
5 ${.vars['reserved-article-title'].data}
6 </div>
7
8 <div class="autor">
9 Notícia publicada por <span class="nome">${destaque.autorPost.getData()}</span> em ${.vars['reserved-article-display-date'].data?datetime("EEE, d MMM yyyy HH:mm:ss Z")?string("dd/MM/yyyy HH:mm")}
10 </div>
11
12 <div class="conteudo">
13 ${conteudo.getData()}
14 </div>
15</div>
16
17<div class="button-wrapper voltar">
18 <button type="button" class="btn btn-amarelo" onclick="history.go(-1);" title="Voltar para a página anterior">Voltar</button>
19</div>