¡Llegamos más cerca para tu comodidad!
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> tituloblog [in template "10157#10197#31846" at line 69, column 83] ---- 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: ${tituloblog.getData()} [in template "10157#10197#31846" at line 69, column 81] ----
1<style>
2 .header-back-to, .header-title {
3 display: none;
4 margin: 0;
5 padding: 0px 0;
6 font-size: 32px;
7 color: #686868;
8 }
9
10 #topcontrol {
11 display: none;
12 }
13 .container{
14
15 }
16 .carousel {
17 display: none;
18}
19.titulo-blog-publicaciones {
20 display: none!important;
21}
22@media (min-width: 768px) {
23 .mupi-home .col-md-8 {
24 flex: 100%;
25 max-width: 100%;
26 }
27}
28.swiperblog{
29 display:none;
30}
31.estilo-fecha{
32 background: #d20a11;
33 display: grid !important;
34 justify-content: center!important;
35 align-items: center!important;
36 max-width: 450px;
37 max-height: 50px;
38 padding: 15px;
39 margin: -70px auto 0px auto;
40 justify-content: center;
41 text-align: center;
42 position: relative;
43 color: white;
44 font-size: 25px;
45 border-radius:5px;
46}
47
48
49</style>
50<div class="mupi-home">
51 <div class="container">
52 <div class="row m-0 mupi-news mupi-news-large">
53 <div class="col-md-8 p-0">
54 <div class="news-vertical d-flex flex-column" style="height: auto">
55 <div class="news-image">
56 <img data-fileentryid="${imagen.getAttribute("fileEntryId")}"
57 alt="${imagen.getAttribute("alt")}"
58 src="${imagen.getData()}" class="img-fluid" style="max-height: 500px;border-radius: 25px;"/>
59 </div>
60 <div class="py-2 px-3">
61 <div class="news-content">
62 <br/><div class="estilo-fecha"><p><#assign fecha_Data = getterUtil.getString(fecha.getData())>
63
64<#if validator.isNotNull(fecha_Data)>
65 <#assign fecha_DateObj = dateUtil.parseDate("yyyy-MM-dd", fecha_Data, locale)>
66
67 ${dateUtil.getDate(fecha_DateObj, "dd MMM yyyy", locale)}
68</#if><p></div><br>
69<h2 class="d-block text-secondary" style="max-height: none; text-align:center;">${tituloblog.getData()}
70</h2>
71 <div class="d-block text-secondary" style="max-height: none">
72 ${contenido.getData()}
73 </div>
74 </div>
75 </div>
76 </div>
77 </div>
78 </div>
79 </div>
80</div>
81
82<script>
83const spans = document.querySelectorAll('.title-text');
84spans.forEach(span => {
85 span.textContent = 'Más detalles';
86});
87
88</script>