Um erro ocorreu enquanto processava o modelo.

The following has evaluated to null or missing:
==> themeDispĺay  [in template "10132#10165#26056204" at line 4, column 68]

----
Tip: If the failing expression is known to be 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: #assign articles = JournalArticleLoca...  [in template "10132#10165#26056204" at line 4, column 1]
----
1<#assign JournalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")> 
2 
3 
4<#assign articles = JournalArticleLocalService.getTemplateArticles(themeDispĺay.getScopeGroupId(), 2605614) /> 
5 
6<#list articles as article> 
7${article.getName(locale)} 
8</#list>