Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> journalArticle.getArticleId  [in template "68881#68920#1115154" at line 7, column 68]

----
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: @liferay_journal["journal-article"] a...  [in template "68881#68920#1115154" at line 7, column 21]
----
1<div class="container-fluid noticias-detalle "> 
2    <#if entries?has_content> 
3        <div class="row"> 
4            <#list entries as curEntry> 
5                <#assign assetRenderer=curEntry.getAssetRenderer() journalArticle=assetRenderer.getAssetObject() /> 
6                <div class="col-md-4 col-4 color-333333"> 
7                    <@liferay_journal["journal-article"] articleId=journalArticle.getArticleId()  
8                    ddmTemplateKey="798281" 
9                        groupId=journalArticle.getGroupId() /> 
10                </div> 
11            </#list> 
12        </div> 
13    </#if> 
14</div> 
15 
16 
17 
18 
19<style> 
20    .noticias-detalle .mt50{ 
21        margin-top:50px; 
22
23    .noticias-detalle .color-333333{ 
24        color:333333; 
25
26    .noticias-detalle { 
27    min-height: 400px; 
28    
29
30    .noticias-detalle a:hover{ 
31    color:#333 !important; 
32         
33
34</style>