News

20 February 2024
Public Consultation as part of the Ex-post Evaluation of the Fund for European Aid to the Most Deprived 2014-2020

A public consultation promoted by the European Commission (EC) and forming an integral part of the Ex-post Evaluation of the Fund for European Aid to the Most Deprived (FEAC) is ongoing until 8 May.

08 August 2023
Presented the experience of the APMC PO in the framework of the Community of Practices on Material Deprivation

On 29 June, a meeting of the Community of Good Practice on Material Deprivation took place. It was attended by the Executive Member of PEOPLE 2030, Sandra Tavares, a programme that assumes in the new programming period 2021-2027, the competences of the Fund for European Aid to the Most Deprived, implemented through the APMC OP, in Portugal 2020.

An error occurred while processing the template.
Expression anexo.selectSingleNode("dynamic-content") is undefined on line 28, column 48 in 27799#27829#29785.
1<div class="apply"> 
2	<h2><i class="fa fa-bookmark-o" aria-hidden="true"></i> ${languageUtil.get(locale, "label-notice-applications")}</h2> 
3	<div class="row-fluid"> 
4		<div class="span12"> 
5 
6<#list entries as curEntry> 
7    <#assign renderer = curEntry.getAssetRenderer() > 
8    <#assign className = renderer.getClassName() > 
9    <#if className == "com.liferay.portlet.journal.model.JournalArticle"> 
10        <#assign article = renderer.getArticle() > 
11        <#assign title = article.getTitle(locale) > 
12		<#assign description = article.getDescription(locale) > 
13		 
14		<#assign document = saxReaderUtil.read(article.getContentByLocale(locale)) >		 
15		 
16		<#assign resumo = document.selectSingleNode("/root/dynamic-element[@name='Resumo']/dynamic-content").getText() > 
17		<#assign avisoDoc = document.selectSingleNode("/root/dynamic-element[@name='Aviso']/dynamic-content").getText() > 
18		 
19		<#assign anexos = document.selectNodes("/root/dynamic-element[@name='Anexo']") > 
20		 
21		<div class="apply-item"> 
22			<span class="title"><a href="${avisoDoc}" target="_blank">${title}</a></span>  
23			<span class="date">${article.getDisplayDate()?string["dd/MM/yyyy"]}</span> 
24			<span class="desc">${resumo}</span> 
25			 
26			<ul> 
27			<#list anexos as anexo> 
28				<#assign url = anexo.selectSingleNode("dynamic-content").getText() > 
29				 
30				<#if url != ""> 
31					<#if anexo.selectSingleNode("dynamic-element[@name='descricao']/dynamic-content").getText()??> 
32						<#assign titulo = anexo.selectSingleNode("dynamic-element[@name='descricao']/dynamic-content").getText() > 
33						<#if titulo != ""> 
34							<li> 
35								<a href="${url}" target="_blank" > ${titulo}</a> 
36							</li> 
37						<#else> 
38							<li> 
39								<a href="${url}" target="_blank" > ${languageUtil.get(locale, "label-anexo")}</a> 
40							</li> 
41						</#if> 
42					</#if> 
43				</#if> 
44			</#list> 
45			</ul> 
46		</div> 
47 
48    </#if> 
49</#list> 
50                               
51			<a href="/avisos-abertos" class="more">${languageUtil.get(locale, "label-all-notice-applications")}</a> 
52		</div> 
53	</div> 
54</div>