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