Errorea gertatu da txantiloia prozesatzerakoan.
Error on line 59, column 5 in 20902#20940#29628625
layout.getTypeSettingsProperty("query-string") is undefined.
It cannot be assigned to querystring
1<!--Ocultamos la fuente y el autor y por jquery lo visualizamos si existe el div fuenteAutor--> 
2<#assign numero = "Zenbakia"> 
3<#assign objDid = "Helburu didaktikoak"> 
4<#assign numVisitas = "Bisita kopurua"> 
5<#assign calendario = "Fecha de publicación_eu"> 
6<#assign niveles = "Mailak"> 
7<#assign formatos = "Formatuak"> 
8<#assign fuente = "Iturria"> 
9<#assign dialecto = "Euskalkia"> 
10<#assign duracion = "Iraupena"> 
11<#assign parcial = "parcial"> 
12<#assign jarduera = "Jarduera"> 
13 
14<#if locale=='en_US'> 
15	<#assign numero = "Number"> 
16	<#assign objDid = "Learning objectives"> 
17	<#assign numVisitas = "Number of visits"> 
18	<#assign calendario = "Fecha de publicación_en"> 
19	<#assign niveles = "Niveles_en"> 
20	<#assign formatos = "Formatos_en"> 
21	<#assign fuente = "Source"> 
22	<#assign dialecto = "Dialect"> 
23	<#assign duracion = "Duration"> 
24	<#assign jarduera = "Exercise"> 
25</#if> 
26<#if locale=='fr_FR'> 
27	<#assign numero = "Nombre"> 
28	<#assign objDid = "Objectifs d'apprentissage"> 
29	<#assign numVisitas = "Nombre de visites"> 
30	<#assign calendario = "Fecha de publicación_fr"> 
31	<#assign niveles = "Niveles_FR"> 
32	<#assign formatos = "Formatos_FR"> 
33	<#assign fuente = "Source"> 
34	<#assign dialecto = "Dialecte"> 
35	<#assign duracion = "Durée"> 
36	<#assign jarduera = "Exercise"> 
37</#if> 
38<#if locale=='es_ES'> 
39	<#assign numero = "Número"> 
40	<#assign objDid = "Objetivos didácticos"> 
41	<#assign numVisitas = "Número de visitas"> 
42	<#assign calendario = "Fecha de publicación"> 
43	<#assign niveles = "Niveles"> 
44	<#assign formatos = "Formatos"> 
45	<#assign fuente = "Fuente"> 
46	<#assign dialecto = "Dialecto"> 
47	<#assign duracion = "Duración"> 
48	<#assign jarduera = "Exercise"> 
49</#if> 
50 
51 
52<#assign url = request.attributes['CURRENT_URL']> 
53 
54<#assign id = httpUtil.getParameter(url, "articleId", false)> 
55<#if !id?has_content> 
56    <#assign serviceContext = staticUtil["com.liferay.portal.service.ServiceContextThreadLocal"].getServiceContext()> 
57    <#assign themeDisplay = serviceContext.getThemeDisplay() /> 
58    <#assign layout=themeDisplay.getLayout()> 
59    <#assign querystring=layout.getTypeSettingsProperty("query-string")> 
60    <#assign hayArticleId= querystring?index_of("articleId") > 
61 
62   <#if hayArticleId?has_content > 
63        <#assign indiceInicio=(querystring?index_of("articleId"))+10> 
64     
65        <#assign indiceFinal=querystring.length()> 
66     
67        <#assign id=querystring?substring(indiceInicio,indiceFinal) > 
68    </#if> 
69</#if> 
70<#assign journalArticleLocalService = serviceLocator.findService("com.liferay.portlet.journal.service.JournalArticleLocalService")> 
71<#assign journalArticleResourceLocalServiceUtil = staticUtil["com.liferay.portlet.journal.service.JournalArticleResourceLocalServiceUtil"]> 
72<#assign assetCategoryLocalServiceUtil = staticUtil["com.liferay.portlet.asset.service.AssetCategoryLocalServiceUtil"]> 
73<#assign artResourcePK = journalArticleResourceLocalServiceUtil.getArticleResourcePrimKey(groupId, id)/> 
74<#assign categoryList=assetCategoryLocalServiceUtil.getCategories("com.liferay.portlet.journal.model.JournalArticle",artResourcePK) > 
75<#assign getterUtil = staticUtil["com.liferay.portal.kernel.util.GetterUtil"]> 
76 
77<!--Lista de vocabularios--> 
78<#assign idVocabuOD=0> 
79<#assign idVocabuDialecto=0> 
80<#assign idTipoDocumento=0> 
81 
82<#assign assetVocabularyLocalServiceUtil = staticUtil["com.liferay.portlet.asset.service.AssetVocabularyLocalServiceUtil"]> 
83<#assign vocabularioList=assetVocabularyLocalServiceUtil.getGroupVocabularies(groupId) > 
84<#list vocabularioList as vocabulario> 
85	<#if vocabulario.getName() == "Objetivos Didácticos"> 
86		<#assign idVocabuOD=vocabulario.getVocabularyId() > 
87	</#if> 
88	<#if vocabulario.getName() == "Eduki_Motak"> 
89		<#assign idTipoDocumento=vocabulario.getVocabularyId() > 
90	</#if> 
91	<#if vocabulario.getName() == "Euskalkia"> 
92		<#assign idVocabuDialecto=vocabulario.getVocabularyId() > 
93	</#if> 
94</#list> 
95 
96 
97<!-- Propiedades de una categorias--> 
98<#assign assetCategoryPropertyLocalServiceUtil =staticUtil["com.liferay.portlet.asset.service.AssetCategoryPropertyLocalServiceUtil"]> 
99 
100<#assign idioma = locale.toString()/>	 
101<#assign property_value=""/>		 
102<#assign urlVuelta=""/> 
103<!--Tipo de documento--> 
104<#assign hrefEM ="&filtros=Eduki_mota"> 
105<#list categoryList as catEdukiMota>				 
106	<#if catEdukiMota.getVocabularyId() == idTipoDocumento> 
107		<#assign assetCategoryPropertyList =assetCategoryPropertyLocalServiceUtil.getCategoryProperties(catEdukiMota.getCategoryId())/> 
108		<#list assetCategoryPropertyList as assetCategoryProperty> 
109			<#assign assetCategoryKey = assetCategoryProperty.getKey()/> 
110			<#if (assetCategoryKey == idioma)> 
111				<#assign property_value=assetCategoryProperty.getValue()/> 
112			</#if>  
113		</#list>   
114		<#assign hrefEM ="${hrefEM}&Eduki_mota=${catEdukiMota.getCategoryId()}"> 
115 
116		 
117	</#if>  
118</#list>									 
119<#if hrefEM?has_content> 
120    <#assign urlAux=hrefEM?substring(1)> 
121    <#assign url2="&bsczmb=&id_structure_autor=16131006&filtros=Formatua&filtros=Helburu_didaktikoa&filtros=Ikasteredua&filtros=Bildumak&filtros=Aldizkaria&filtros=Baliabideak&ordenarPor=Pub.+data&bsctags=&bscAutor=" /> 
122    <#assign urlVuelta="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1576593315033&bscfilterby=&filtros=Maila&${urlAux}${url2}"/> 
123	<#assign urlVueltaDoc="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1576593315033&bscfilterby=&filtros=Eduki_mota&Eduki_mota=20576121"/> 
124	 
125   
126</#if>  
127<#if id?has_content> 
128    <#if journalArticleLocalService??> 
129	 
130        <#assign articleById = journalArticleLocalService.getDisplayArticle(getterUtil.getLong(groupId), id) /> 
131         
132        <#assign document = saxReaderUtil.read(articleById.getContentByLocale(locale)) > 
133		 
134		<#assign hrefCategorias ="&filtros=Maila"> 
135          
136		<!-- Para saber si mostrar el bloque o no-->  
137		<#assign mostrarBloqueNivel = "NO"> 
138		<#assign mostrarBloqueFormato = "NO"> 
139		<#assign mostrarBloqueObjDidacticos = "NO"> 
140		<#assign mostrarBloqueObjDidacticosBakarka = "NO"> 
141		<#assign mostrarBloqueObjDidacticosTaldeLana = "NO"> 
142		<#assign mostrarBloqueObjDidacticosJardunbikoa = "NO"> 
143		<#assign mostrarBloqueDialecto="NO"/> 
144				 
145		<#list categoryList as category> 
146			<#if category.getName() == "A1" || category.getName() == "A2" ||  
147				 category.getName() == "B1" || category.getName() == "B2" || 
148				 category.getName() == "C1" || category.getName() == "C2"> 
149				<#assign mostrarBloqueNivel = "SI"> 
150			</#if>	  
151			<#if category.getName() == "Entzungaiak" ||  category.getName() == "Bideoak" || category.getName() == "Idatziak"> 
152				<#assign mostrarBloqueFormato = "SI"> 
153			</#if> 
154			<#if category.getVocabularyId() == idVocabuOD> 
155				<#assign mostrarBloqueObjDidacticos = "SI"> 
156			</#if> 
157			<#if category.getVocabularyId() == idVocabuDialecto> 
158				<#assign mostrarBloqueDialecto="SI"/> 
159			</#if>  
160		</#list>  
161	 
162		<div class="col-xs-12 col-md-12 col-lg-12 separacionTitulo sinMargenIzq"> 
163			<p>${jarduera}</p> 
164		</div> 
165		<!--categorias nivel-->		 
166		<#if mostrarBloqueNivel == "SI">		 
167			<div class="col-xs-12 col-md-12 col-lg-12 separacionNivelesJarduera sinMargenIzq"> 
168				<div class="col-xs-2 col-md-2 col-lg-2"> 
169					<i class="fa fa-signal-J jarduera" aria-hidden="true" title="${niveles}"></i> 
170				</div> 
171				<div class="col-xs-10 col-md-10 col-lg-10"> 
172					<#list categoryList as category> 
173						<#if category.getName() == "A1" || category.getName() == "A2" ||  
174							 category.getName() == "B1" || category.getName() == "B2" || 
175							 category.getName() == "C1" || category.getName() == "C2"> 
176							<a href="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1569830512685&filtros=Maila&Maila=${category.getCategoryId()}&ordenarPor=Pub.+data" class="${category.getName()}" title="${category.getName()}">${category.getName()}</a> 
177							<#assign hrefCategorias ="${hrefCategorias}&Maila=${category.getCategoryId()}"> 
178						</#if> 
179					</#list>	 
180				</div> 
181			</div> 
182		</#if> 
183		 
184		<!--categorias formato --> 
185		<#if mostrarBloqueFormato == "SI">		 
186			<div class="col-xs-12 col-md-12 col-lg-12 separacionCategoriasJarduera sinMargenIzq"> 
187				<div class="col-xs-2 col-md-2 col-lg-2"> 
188					<i class="fa fa-info-circle-J jarduera" aria-hidden="true" title="${formatos}"></i> 
189				</div> 
190				<div class="col-xs-10 col-md-10 col-lg-10"> 
191					<#list categoryList as category> 
192						<#if category.getName() == "Entzungaiak"> 
193							<#assign assetCategoryPropertyList =assetCategoryPropertyLocalServiceUtil.getCategoryProperties(category.getCategoryId())/> 
194							<#list assetCategoryPropertyList as assetCategoryProperty> 
195								<#assign assetCategoryKey = assetCategoryProperty.getKey()/> 
196								<#if (assetCategoryKey == idioma)> 
197									<#assign property_value=assetCategoryProperty.getValue()/> 
198								</#if>  
199							</#list>   
200							<a href="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1569830512685&filtros=Formato&Formato=${category.getCategoryId()}${hrefCategorias}${hrefEM}&ordenarPor=Pub.+data" class="fa fa-headphones-H" title="${property_value}"></a> 
201						</#if> 
202						<#if category.getName() == "Bideoak"> 
203							<#assign assetCategoryPropertyList =assetCategoryPropertyLocalServiceUtil.getCategoryProperties(category.getCategoryId())/> 
204							<#list assetCategoryPropertyList as assetCategoryProperty> 
205								<#assign assetCategoryKey = assetCategoryProperty.getKey()/> 
206								<#if (assetCategoryKey == idioma)> 
207									<#assign property_value=assetCategoryProperty.getValue()/> 
208								</#if>  
209							</#list>   
210							<a href="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1569830512685&filtros=Formato&Formato=${category.getCategoryId()}${hrefCategorias}${hrefEM}&ordenarPor=Pub.+data" class="fa fa-television-H" title="${property_value}"></a> 
211						</#if> 
212						<#if category.getName() == "Idatziak"> 
213							<#assign assetCategoryPropertyList =assetCategoryPropertyLocalServiceUtil.getCategoryProperties(category.getCategoryId())/> 
214							<#list assetCategoryPropertyList as assetCategoryProperty> 
215								<#assign assetCategoryKey = assetCategoryProperty.getKey()/> 
216								<#if (assetCategoryKey == idioma)> 
217									<#assign property_value=assetCategoryProperty.getValue()/> 
218								</#if>  
219							</#list>   
220							<a href="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1569830512685&filtros=Formato&Formato=${category.getCategoryId()}${hrefCategorias}${hrefEM}&ordenarPor=Pub.+data" class="fa fa-newspaper-o-H" title="${property_value}"></a> 
221						</#if> 
222					</#list> 
223				</div> 
224			</div> 
225		</#if> 
226		 
227		<!-- Fecha de visualización --> 
228		<#assign date =articleById.getDisplayDate()?date/> 
229		<div class="col-xs-12 col-md-12 col-lg-12 separacionFechaJarduera sinMargenIzq"> 
230			<div class="col-xs-2 col-md-2 col-lg-2"> 
231				<i class="fa fa-clock-o-J jarduera" aria-hidden="true" title="${calendario}"></i> 
232			</div> 
233			<div class="col-xs-10 col-md-10 col-lg-10"> 
234				 
235				<#if locale=='es_ES'> 
236					${date?string["dd-MM-yyyy"]} 
237				</#if> 
238				<#if locale=='eu_ES'> 
239					${date?string["yyyy-MM-dd"]} 
240				</#if> 
241				<#if locale=='fr_FR'> 
242					${date?string["dd-MM-yyyy"]} 
243				</#if> 
244				<#if locale=='en_US'> 
245					${date?string["MM-dd-yyyy"]} 
246				</#if> 
247			</div>	 
248		</div> 
249		 
250		<!--Fuente y Autor--> 
251		<div id="embedded-articlenextevents-portlet" class="col-xs-12 col-md-12 col-lg-12 separacionFuenteAutorJarduera sinMargenIzq embebido"> 
252			<runtime-portlet name="x61pRelaContWAR_WAR_x61pRelaContWARportlet" queryString="idArticulo=${id}&amp;visualizacion=${parcial}"/> 
253		</div> 
254		 
255		<!-- Id article del contenido --> 
256		<div class="col-xs-12 col-md-12 col-lg-12 separacionIdArticleJarduera sinMargenIzq"> 
257			<div class="col-xs-2 col-md-2 col-lg-2"> 
258				<i class="fa fa-key-J jarduera" aria-hidden="true" title="${numero}"></i> 
259			</div> 
260			<div class="col-xs-10 col-md-10 col-lg-10"> 
261				${id} 
262			</div> 
263		</div> 
264 
265		 
266		<!-- Objetivos didacticos--> 
267		<#if mostrarBloqueObjDidacticos == "SI">	 
268			<div class="col-xs-12 col-md-12 col-lg-12 separacionObjDidacticosJarduera sinMargenIzq"> 
269				<div class="col-xs-2 col-md-2 col-lg-2"> 
270					<i class="fa fa-bullseye-J jarduera" aria-hidden="true" title="${objDid}"></i> 
271				</div> 
272				<div class="col-xs-10 col-md-10 col-lg-10"> 
273					<ul class="sinPunto"> 
274						<#list categoryList as catOD>				 
275							<#if catOD.getVocabularyId() == idVocabuOD> 
276								<#assign assetCategoryPropertyList =assetCategoryPropertyLocalServiceUtil.getCategoryProperties(catOD.getCategoryId())/> 
277								<#list assetCategoryPropertyList as assetCategoryProperty> 
278									<#assign assetCategoryKey = assetCategoryProperty.getKey()/> 
279									<#if (assetCategoryKey == idioma)> 
280										<#assign property_value=assetCategoryProperty.getValue()/> 
281									</#if>  
282								</#list> 
283								<#if (property_value == "Bakarka" || property_value == "Tarea individual" || property_value == "Individual task" || property_value == "Tâche individuel")>	 
284									<#assign mostrarBloqueObjDidacticosBakarka = "SI"> 
285								<#elseif (property_value == "Talde-lana" || property_value == "Tarea colaborativa" || property_value == "Teamwork" || property_value == "Tâche collaborative")>	 
286									<#assign mostrarBloqueObjDidacticosTaldeLana = "SI"> 
287								<#elseif (property_value == "Jardun bikoa" || property_value == "Aprendizaje semipresencial" || property_value == "Blended learnig" || property_value == "Apprentissage semipresentiel")>	 
288									<#assign mostrarBloqueObjDidacticosJardunbikoa = "SI"> 
289								<#else> 
290									<li> 
291										<a href="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1554897302092&filtros=Formato&Formato=${catOD.getCategoryId()}${hrefCategorias}${hrefEM}&ordenarPor=Pub.+data" title="${property_value}">${property_value}</a> 
292									</li> 
293								</#if> 								 
294							</#if>  
295								</#list>   
296					</ul> 
297				</div> 
298			</div> 
299		</#if>  
300		<!-- Objetivos didacticos Bakarka--> 
301		<#if mostrarBloqueObjDidacticosBakarka == "SI"> 
302			<div class="col-xs-12 col-md-12 col-lg-12 separacionObjDidacticosJarduera sinMargenIzq"> 
303				<div class="col-xs-2 col-md-2 col-lg-2"> 
304					<i class="fa-bakarka-J" aria-hidden="true"></i> 
305				</div> 
306				<div class="col-xs-10 col-md-10 col-lg-10"> 
307					<ul class="sinPunto"> 
308						<#list categoryList as catOD>				 
309							<#if catOD.getVocabularyId() == idVocabuOD> 
310								<#assign assetCategoryPropertyList =assetCategoryPropertyLocalServiceUtil.getCategoryProperties(catOD.getCategoryId())/> 
311								<#list assetCategoryPropertyList as assetCategoryProperty> 
312									<#assign assetCategoryKey = assetCategoryProperty.getKey()/> 
313									<#if (assetCategoryKey == idioma)> 
314										<#assign property_value=assetCategoryProperty.getValue()/> 
315									</#if>  
316								</#list> 
317								<#if (property_value == "Bakarka" || property_value == "Tarea individual" || property_value == "Individual task" || property_value == "Tâche individuel")>	 
318									<li> 
319										<a href="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1554897302092&filtros=Formato&Formato=${catOD.getCategoryId()}${hrefCategorias}${hrefEM}&ordenarPor=Pub.+data" title="${property_value}">${property_value}</a> 
320									</li> 
321								</#if> 								 
322							</#if>  
323						</#list>	 
324					</ul> 
325				</div> 
326			</div> 
327		</#if>  
328		<!-- Objetivos didacticos Talde-Lana--> 
329		<#if mostrarBloqueObjDidacticosTaldeLana == "SI"> 
330			<div class="col-xs-12 col-md-12 col-lg-12 separacionObjDidacticosJarduera sinMargenIzq"> 
331				<div class="col-xs-2 col-md-2 col-lg-2"> 
332					<i class="fa-taldeLana-J" aria-hidden="true"></i> 
333				</div> 
334				<div class="col-xs-10 col-md-10 col-lg-10"> 
335					<ul class="sinPunto"> 
336						<#list categoryList as catOD>				 
337							<#if catOD.getVocabularyId() == idVocabuOD> 
338								<#assign assetCategoryPropertyList =assetCategoryPropertyLocalServiceUtil.getCategoryProperties(catOD.getCategoryId())/> 
339								<#list assetCategoryPropertyList as assetCategoryProperty> 
340									<#assign assetCategoryKey = assetCategoryProperty.getKey()/> 
341									<#if (assetCategoryKey == idioma)> 
342										<#assign property_value=assetCategoryProperty.getValue()/> 
343									</#if>  
344								</#list> 
345								<#if (property_value == "Talde-lana" || property_value == "Tarea colaborativa" || property_value == "Teamwork" || property_value == "Tâche collaborative")>	 
346									<li> 
347										<a href="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1554897302092&filtros=Formato&Formato=${catOD.getCategoryId()}${hrefCategorias}${hrefEM}&ordenarPor=Pub.+data" title="${property_value}">${property_value}</a> 
348									</li> 
349								</#if> 								 
350							</#if>  
351						</#list>	 
352					</ul> 
353				</div> 
354			</div> 
355		</#if>  
356		<!-- Objetivos didacticos Jardunbikoa--> 
357		<#if mostrarBloqueObjDidacticosJardunbikoa == "SI"> 
358			<div class="col-xs-12 col-md-12 col-lg-12 separacionObjDidacticosJarduera sinMargenIzq"> 
359				<div class="col-xs-2 col-md-2 col-lg-2"> 
360					<i class="fa-jardunbikoa-J" aria-hidden="true"></i> 
361				</div> 
362				<div class="col-xs-10 col-md-10 col-lg-10"> 
363					<ul class="sinPunto"> 
364						<#list categoryList as catOD>				 
365							<#if catOD.getVocabularyId() == idVocabuOD> 
366								<#assign assetCategoryPropertyList =assetCategoryPropertyLocalServiceUtil.getCategoryProperties(catOD.getCategoryId())/> 
367								<#list assetCategoryPropertyList as assetCategoryProperty> 
368									<#assign assetCategoryKey = assetCategoryProperty.getKey()/> 
369									<#if (assetCategoryKey == idioma)> 
370										<#assign property_value=assetCategoryProperty.getValue()/> 
371									</#if>  
372								</#list> 
373								<#if (property_value == "Jardun bikoa" || property_value == "Aprendizaje semipresencial" || property_value == "Blended learnig" || property_value == "Apprentissage semipresentiel")>	 
374								<li> 
375									<a href="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1554897302092&filtros=Formato&Formato=${catOD.getCategoryId()}${hrefCategorias}${hrefEM}&ordenarPor=Pub.+data" title="${property_value}">${property_value}</a> 
376								</li> 
377							</#if>  
378							</#if>  
379						</#list>	 
380					</ul> 
381				</div> 
382			</div> 
383		</#if>  
384	 
385		 
386		<!-- Dialecto-->  
387		<#if (mostrarBloqueDialecto == "SI")> 
388			<div class="col-xs-12 col-md-12 col-lg-12 separacionDialectoJarduera sinMargenIzq"> 
389				<div class="col-xs-2 col-md-2 col-lg-2"> 
390					<i class="fa fa-file-o-J jarduera" aria-hidden="true" title="${dialecto}"></i> 
391				</div> 
392				<div class="col-xs-10 col-md-10 col-lg-10"> 
393					<ul class="sinPunto"> 
394						<#list categoryList as catDialecto>				 
395							<#if catDialecto.getVocabularyId() == idVocabuDialecto> 
396								<#assign assetCategoryPropertyList =assetCategoryPropertyLocalServiceUtil.getCategoryProperties(catDialecto.getCategoryId())/> 
397								<#list assetCategoryPropertyList as assetCategoryProperty> 
398									<#assign assetCategoryKey = assetCategoryProperty.getKey()/> 
399									<#if (assetCategoryKey == idioma)> 
400										<#assign property_value=assetCategoryProperty.getValue()/> 
401									</#if>  
402								</#list>   
403								<li> 
404									<a href="/bilatzaile-orokorra?_x61pbuscadorGeneralWAR_WAR_x61pbuscadorGeneralWARportlet_formDate=1554897302092&Nivel=${catDialecto.getCategoryId()}&ordenarPor=Pub.+data" title="${property_value}">${property_value}</a> 
405								</li> 
406							</#if>  
407						</#list>	 
408					</ul> 
409				</div> 
410			</div> 
411		</#if>  
412		 
413		<!--Duración --> 
414		<#assign iraupena = document.valueOf("//dynamic-element[@name='iraupena']/dynamic-content/text()") /> 
415		<#if iraupena!=''> 
416			<div class="col-xs-12 col-md-12 col-lg-12 separacionDuracionJarduera sinMargenIzq"> 
417				<div class="col-xs-2 col-md-2 col-lg-2"> 
418					<i class="fa fa-duracion-J jarduera" aria-hidden="true" title="${duracion}"></i> 
419				</div> 
420				<div class="col-xs-10 col-md-10 col-lg-10"> 
421					${iraupena} 
422				</div> 
423			</div> 
424		</#if> 
425	<!-- Incrementamos el valor de las visitas cada vez que se entra en el detalle--> 
426	     <#if artResourcePK !=0 > 
427		      <#assign assetEntryLocalServiceUtil = staticUtil['com.liferay.portlet.asset.service.AssetEntryLocalServiceUtil']> 
428	    	<#assign assetEntry = assetEntryLocalServiceUtil.getEntry("com.liferay.portlet.journal.model.JournalArticle", artResourcePK)> 
429			 
430	    	<#assign assetEntryIncrementado =assetEntryLocalServiceUtil.incrementViewCounter(assetEntry.getUserId(), assetEntry.getClassName(), artResourcePK)> 
431 
432	    	<!-- Numero de visitas pendiente de mirar Hegoa como sacarlo--> 
433	    	<div class="col-xs-12 col-md-12 col-lg-12 separacionVisitasJarduera sinMargenIzq"> 
434		    	<div class="col-xs-2 col-md-2 col-lg-2"> 
435		    		<i class="fa fa-users-J jarduera" aria-hidden="true" title="${numVisitas}"></i> 
436	    		</div> 
437	    		<div class="col-xs-10 col-md-10 col-lg-10"> 
438	    			<runtime-portlet name="x61pViewCountWAR_WAR_x61pViewCountWARportlet" queryString="idArticulo=${id}"/> 
439	    		</div> 
440	    	</div> 
441	    	<div class="hidden tipoFicha"><span class="urlVuelta"><a href="${urlVuelta}"> </a></span><span class="urlVueltaDoc"><a href="${urlVueltaDoc}"> </a></span></div> 
442			 
443	     </#if> 
444 
445    </#if> 
446</#if> 
447 
448<script> 
449if($("#embedded-articlenextevents-portlet.embebido ul li div.fuenteAutor").length){ 
450	$("#embedded-articlenextevents-portlet.embebido ul li div.fuenteAutor").parents("#embedded-articlenextevents-portlet").show(); 
451}  
452</script>