Publicador de contenidos
Atrás
1ª Corporación Pública acreedora del Sello de Comunicación Responsable
Se ha producido un error al procesar la plantilla.
Expression Titular is undefined on line 75, column 15 in 10154#10194#2699651.
1<style>
2.asset-content {
3 margin:0;
4}
5
6.taglib-header {
7 display: none;
8}
9
10img {
11 display: block;
12 margin: auto;
13 max-height: 450px;
14}
15
16.fechaNoticia{
17 text-decoration: underline;
18 font-size: 18px;
19}
20
21.button {
22 display: inline-block;
23 padding: 15px 25px;
24 font-size: 24px;
25 cursor: pointer;
26 text-align: center;
27 outline: none;
28 color: #fff;
29 background-color: #1B95E0;
30 border: none;
31 border-radius: 10px;
32 float:right;
33}
34
35.button:hover {
36 background-color: #4267B2
37}
38
39.marginPrevisionInformativa{
40 padding:20px;
41 border-radius: 10px;
42 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
43}
44
45#botonVolver{
46 text-align:right;
47 padding-top: 20px;
48 }
49
50
51#botonVolver a{
52 background:#7b1fa299;
53 padding:10px;
54 color:white;
55 border-radius:5px;
56 cursor:pointer;
57
58}
59
60#botonVolver a:hover{
61 background:#7b1fa2;
62 text-decoration:none;
63}
64
65</style>
66
67<script>
68function goBack() {
69 window.history.back();
70}
71</script>
72
73
74<div class="marginPrevisionInformativa diputacion-max-width">
75 <h3>${Titular.getData()}</h3>
76
77 <#assign Fecha_Data = getterUtil.getLong(Fecha.getData())>
78
79 <#if (Fecha_Data > 0)>
80 <#assign Fecha_DateObj = dateUtil.newDate(Fecha_Data)>
81
82 <div class="fechaNoticia">
83 Fecha ${dateUtil.getDate(Fecha_DateObj, "dd/MM/yyyy", locale)}
84 </div>
85 <br/>
86 </#if>
87
88 <br/><br/>
89
90 <br/>
91 ${Descripcion.getData()}
92
93
94 <#if Imagen.getSiblings()?has_content>
95 <div class="row">
96 <#list Imagen.getSiblings() as cur_Imagen>
97 <img class="col-md-3 col-sm-6 col-xs-12" src="${cur_Imagen.getData()}" alt="${cur_Imagen.AltImagen.getData()}">
98 </#list>
99 </div>
100 </#if>
101
102 <#if Documento.getSiblings()?has_content>
103 <#if Documento.getSiblings()?size > 1 || Documento.getSiblings()?first.NombreDocumento.getData() != "">
104 <h3 style="marign-top:30px;">Documentos relacionados</h3>
105 <#list Documento.getSiblings() as cur_Documento>
106 <span class="fa fa-file hoverFile">
107 <a href="${cur_Documento.getData()}">
108 ${cur_Documento.NombreDocumento.getData()}
109 </a></span></br>
110 </#list>
111 </#if>
112 </#if>
113
114
115
116 <br/>
117
118 <div id="botonVolver">
119 <a onclick="goBack()">Volver</a>
120 </div>
121
122</div>