spinner-avanza
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> TitListadoNoticias  [in template "752748#752794#533717" at line 49, column 23]

----
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: ${TitListadoNoticias.getData()}  [in template "752748#752794#533717" at line 49, column 21]
----
1<#-- 
2Web content templates are used to lay out the fields defined in a web 
3content structure. 
4 
5Please use the left panel to quickly add commonly used variables. 
6Autocomplete is also available and can be invoked by typing "${". 
7--> 
8<div class='container warning-block'> 
9    <#if radioBoton.getData() ?contains("contenido")> 
10 
11        <div class='row'> 
12            <div class='col-md-9 col-sm-12'> 
13                <div class="tab-content" id="v-pills-tabContent"> 
14 
15                    <#if Noticias1.TituloNoticia1.getSiblings()?has_content> 
16                        <#list Noticias1.TituloNoticia1.getSiblings()?reverse as cur_Noticias> 
17                            <#if cur_Noticias?index==0> 
18                                <div class="tab-pane fade show active" id="aviso${cur_Noticias?index}" role="tabpanel" 
19                                    aria-labelledby="tab${cur_Noticias?index}"> 
20                                    <h2 class="warning-title"> ${cur_Noticias.getData()}</h2> 
21                                    <p class="entradilla">${cur_Noticias.Entradilla.getData()}</p> 
22                                    <#if cur_Noticias.ImagenDestacada.getData()?? && cur_Noticias.ImagenDestacada.getData() != ""> 
23                                    	<img style="margin-bottom:2em" alt="${cur_Noticias.ImagenDestacada.getAttribute("alt")}" data-fileentryid="${cur_Noticias.ImagenDestacada.getAttribute("fileEntryId")}" src="${cur_Noticias.ImagenDestacada.getData()}" /> 
24                                    </#if> 
25                                    <#if cur_Noticias.Descripcion.getData()?has_content> 
26                                        <div class="warning-detail"> ${cur_Noticias.Descripcion.getData()}</div> 
27                                    </#if> 
28                                </div> 
29                            <#elseif cur_Noticias?index gt 0> 
30                                <div class="tab-pane fade" id="aviso${cur_Noticias?index}" role="tabpanel" 
31                                    aria-labelledby="tab${cur_Noticias?index}"> 
32                                    <h2 class="warning-title"> ${cur_Noticias.getData()}</h2> 
33                                    <p class="entradilla">${cur_Noticias.Entradilla.getData()}</p> 
34                                    <#if cur_Noticias.ImagenDestacada.getData()?? && cur_Noticias.ImagenDestacada.getData() != ""> 
35                                    	<img style="margin-bottom:2em" alt="${cur_Noticias.ImagenDestacada.getAttribute("alt")}" data-fileentryid="${cur_Noticias.ImagenDestacada.getAttribute("fileEntryId")}" src="${cur_Noticias.ImagenDestacada.getData()}" /> 
36                                    </#if> 
37                                    <#if cur_Noticias.Descripcion.getData()?has_content> 
38                                        <div class="warning-detail"> ${cur_Noticias.Descripcion.getData()}</div> 
39                                    </#if> 
40                                </div> 
41                            </#if> 
42                        </#list> 
43                    </#if> 
44                </div> 
45            </div> 
46 
47 
48            <div class='col-md-3 col-sm-12' style="border-left: 1px solid #ececec;"> 
49                <h3>${TitListadoNoticias.getData()}</h3> 
50                <div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical"> 
51                    <#if Noticias1.TituloNoticia1.getSiblings()?has_content> 
52                            <#list Noticias1.TituloNoticia1.getSiblings()?reverse as cur_Noticias> 
53                                <#if cur_Noticias?index==0> 
54                                        <a class="active wl" id="aviso0${cur_Noticias?index}" data-toggle="pill" 
55                                            href="#aviso${cur_Noticias?index}" aria-selected="false" 
56                                            aria-controls="av${cur_Noticias?index}"> 
57                                            ${cur_Noticias.getData()} 
58                                        </a> 
59                                <#elseif cur_Noticias?index gt 0> 
60                                        <a class="wl" id="aviso0${cur_Noticias?index}" data-toggle="pill" 
61                                            href="#aviso${cur_Noticias?index}" aria-selected="false" 
62                                            aria-controls="av${cur_Noticias?index}"> 
63                                            ${cur_Noticias.getData()} 
64                                        </a> 
65                                </#if> 
66                            </#list> 
67                    </#if> 
68                </div> 
69            </div> 
70        </div> 
71 
72        <#else> 
73 
74            <div class='empty-state'> 
75                <img src="/documents/752794/753302/download.png/ba24d75b-b870-560e-d663-3ab522384bc3?t=1639725757341" 
76                    style="margin: auto;display: block;  
77      padding-top: 32px;"> 
78                <div style="width: 77%;margin:auto;"> 
79                    <p 
80                        style='text-transform: uppercase; text-align: center; color: #707070; font-family: TipografiaRamis-Rams-Bold; font-size: 24px;'> 
81                        ${TextoEmpty.getData()}</p> 
82 
83                    <p 
84                        style=' text-align: center; color:#707070;   font-family: TipografiaRamis-Rams; font-size: 24px;'> 
85                        ${DescripciónEmpty.getData()}</p> 
86                </div> 
87            </div> 
88 
89    </#if> 
90 
91 
92</div> 
93 
94<style> 
95    a.wl:after { 
96        content: " "; 
97        display: block; 
98        height: 1px; 
99        margin-top: 14px; 
100        margin-bottom: 14px; 
101        background-color: #bb2222; 
102        width: 50px; 
103
104    a.wl { 
105        color: #54585a; 
106        text-decoration: none !important; 
107        margin: 0 0 0 1em; 
108        font-size: 1.3em; 
109        line-height: 1.2em; 
110
111    a.wl:hover { 
112        color: #c33; 
113        text-decoration: underline !important; 
114
115 
116    .container.warning-block { 
117        margin-top: 50px; 
118
119    h2.warning-title { 
120        margin-bottom: 25px; 
121        letter-spacing: 1px; 
122        font-family: TipografiaRamis-Rams-Bold; 
123        font-size: 18px; 
124        color: #CC3333; 
125
126    .warning-block h3{ 
127        font-family: TipografiaRamis-Rams-Bold; 
128        margin-bottom: 1.5em !important; 
129
130    .warning-detail { 
131        margin-bottom: 35px; 
132
133    .warning-detail p { 
134        font-size: 1.3em !important; 
135        color:#5B676E; 
136        font-family: 'TipografiaRamis-Rams'; 
137
138    .warning-block .entradilla{ 
139        font-size: 1.6em; 
140        color:#777; 
141        font-family: 'TipografiaRamis-RamsLt'; 
142
143 
144    .otros-servicios { 
145        font-family: 'TipografiaRamis-Rams-Bold'; 
146        font-size: 24px; 
147        letter-spacing: 2.4px; 
148        color: #666666; 
149        opacity: 1; 
150
151</style> 
152<script> 
153 
154    $(document).ready(function () { 
155        var url_string = window.location.href; 
156        var url = new URL(url_string); 
157        var variableNota = url.searchParams.get("alerta"); 
158        console.log(variableNota); 
159 
160 
161        if (variableNota == null) { 
162 
163        } else { 
164            $('#' + variableNota + '').tab('show'); 
165
166 
167    }); 
168 
169 
170</script>