El més destacat
Article
Anàlisi de les polítiques d’inclusió social a Espanya mitjançant avaluacions aleatoritzades
Samuel Bentolila, CEMFI; Ana García-Hernández i Inés Torres-Rojas, J-PAL Europe;
Aquest estudi aporta dades empíriques sobre polítiques d’inclusió social a Espanya que mostren impactes significatius en ocupació, suport social, educació, competències digitals i habitatge. Els resultats reforcen la importància de dissenyar polítiques públiques basades en l’evidència.
Article
L’esperança i la preocupació impulsen l’acció climàtica entre els joves i els adults espanyols
Anne-Marie Ballegeer, Enzo Ferrari Lagos, Rebeca Ferreira Corchero, Diego Corrochano Fernández i Camilo Ruiz Méndez, Universidad de Salamanca;
La preocupació i l’esperança pel que fa al canvi climàtic conviuen en la majoria dels joves i adults, i qui sent totes dues coses tendeix a informar-se més i actuar de manera més proambiental.
Article
Els incentius financers impulsen la natalitat a llarg termini?
Lidia Cruces i F. Javier Rodríguez Román, Goethe Universität Frankfurt;
El «xec nadó» buscava incentivar la natalitat, però va tenir un efecte limitat. Tot i que va ajudar algunes famílies a decidir-se, la dificultat per conciliar feina i maternitat continua sent l’obstacle principal per tenir més fills.
Participa en les nostres activitats
S'ha produït un error mentre es processava la plantilla.
The following has evaluated to null or missing:
==> categoriesTipo [in template "236565#236606#1538011" at line 77, column 13]
----
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: #list categoriesTipo as category [in template "236565#236606#1538011" at line 77, column 6]
----
1<#--
2 Plantilla para mostrar actividades en listado
3 TemplateKey: TEMPLATE_ACTIVITIE_LIST
4 -->
5 <#-- INI: ASIGNACIONES DE VALORES -->
6 <#assign
7 viewURL = friendlyURL + '/-/' + .vars['reserved-article-url-title'].data
8 targetURL = "_self"
9 content = ""
10 imgSrc = ""
11 fechaInicio = ""
12 fechaFin = ""
13 nombreCentro = ""
14 title = .vars['reserved-article-title'].data
15 articleId = .vars['reserved-article-id'].data
16 />
17 <#if _categoriesUtil??>
18 <#assign
19 categoriesTipo = _categoriesUtil.getCategoriesFromArticleAndVocabularyName(groupId, articleId, "tipus-de-contingut" )
20 categoriesTematicaPrincipal = _categoriesUtil.getCategoryWithPropertyFromArticleAndVocabularyName(groupId, themeDisplay, articleId,
21"tematica-primaria", "layout")
22 categoriesTematicaSecundaries = _categoriesUtil.getCategoryWithPropertyFromArticleAndVocabularyName(groupId, themeDisplay, articleId,
23"tematiques-secundaries", "layout")
24 />
25 </#if>
26
27 <#-- Extraer años para comparación antes de formatear -->
28 <#assign rawFechaInicio =
29getterUtil.getString(fechasFieldSet.fechasFieldSetFieldSet.fechaInicioFieldSet.fechaInicioFieldSetFieldSet.dateFechaInicio.getData()) />
30 <#assign rawFechaFin = getterUtil.getString(fechasFieldSet.fechasFieldSetFieldSet.fechaFinFieldSet.fechaFinFieldSetFieldSet.dateFechaFin.getData())
31 />
32
33 <#assign showYearFin = false />
34 <#if validator.isNotNull(rawFechaInicio) && rawFechaInicio?has_content
35 && validator.isNotNull(rawFechaFin) && rawFechaFin?has_content>
36 <#assign yearInicio = rawFechaInicio?substring(0, 4) />
37 <#assign yearFin = rawFechaFin?substring(0, 4) />
38 <#if yearInicio != yearFin>
39 <#assign showYearFin = true />
40 </#if>
41 </#if>
42
43 <#assign fechaInicio>
44 <@getCorrectDate rawFechaInicio showYearFin/>
45 </#assign>
46 <#assign fechaFin>
47 <@getCorrectDate rawFechaFin showYearFin />
48 </#assign>
49
50 <#if (cicloFieldSet.cicloFieldSetFieldSet.EnlaceCiclo.getData())?? && !getterUtil.getBoolean(checkShowInPage.getData())>
51 <#assign viewURL = cicloFieldSet.cicloFieldSetFieldSet.EnlaceCiclo.getData() />
52 <#assign targetURL = "_blank" />
53 </#if>
54 <#if (TITLE.getData())??>
55 <#assign title = TITLE.getData() />
56 </#if>
57 <#if (SUMMARY.getData())??>
58 <#assign content = SUMMARY.getData() />
59 </#if>
60 <#if (GENERALIMAGE.getData())?has_content && GENERALIMAGE.getData() != "">
61 <#assign imgSrc = GENERALIMAGE.getData() />
62 </#if>
63 <#if (RESUMENDES.getData())??>
64 <#assign content = RESUMENDES.getData()/>
65 </#if>
66 <#if (NombreCentro.getData())??>
67 <#assign nombreCentro = NombreCentro.getData() />
68 </#if>
69 <#-- FIN: ASSIGNACIONES DE VALORES -->
70
71 <div class="">
72 <a href="${viewURL}" target="${targetURL}" title="${title}" class="pushtag">
73 <img src="${imgSrc}" alt="${title}" />
74 </a>
75 </div>
76 <div class="index-and-title">
77 <#list categoriesTipo as category >
78 <p class="category" style="position:relative;margin: 0;left: 0;"> ${category.getTitle(locale)}</p>
79 </#list>
80 </div>
81 <div class="text-fixe">
82 <a href="${viewURL}" target="${targetURL}" title="${title}" class="pushtag">
83 <h2>${title}</h2>
84 </a>
85 <hr class="tag-separator"/>
86 <div class="tags-and-date display">
87 <#if categoriesTematicaPrincipal?has_content>
88 <#list categoriesTematicaPrincipal as category, enllacCategory >
89 <span class="tags">
90 <a href="${enllacCategory}" title="${category.getTitle(locale)}" >${category.getTitle(locale)}</a>
91 </span>
92 </#list>
93 </#if>
94 <#if categoriesTematicaSecundaries?has_content>
95 <#list categoriesTematicaSecundaries as category, enllacCategory >
96 <span class="tags">
97 <a href="${enllacCategory}" title="${category.getTitle(locale)}" >${category.getTitle(locale)}</a>
98 </span>
99 </#list>
100 </#if>
101 <span class="posted-on">
102 <#if fechaInicio?has_content >
103 <time datetime="${fechaInicio?trim}">${fechaInicio?trim}</time>
104 </#if>
105 <#if fechaInicio?has_content && fechaFin?has_content>
106 <span> - </span>
107 </#if>
108 <#if fechaFin?has_content >
109 <time datetime="${fechaFin?trim}">${fechaFin?trim}</time>
110 </#if>
111 <div class="tags-and-date">
112 <div class="tags">
113 ${nombreCentro}
114 </div>
115 </div>
116 </span>
117 </div>
118 <#if content?has_content>
119 <div class="summary">${content}</div>
120 </#if>
121 </div>
122
123 <#macro getCorrectDate dateField showYear=false>
124 <#assign fechaInput = getterUtil.getString(dateField) />
125 <#if validator.isNotNull(fechaInput) && fechaInput?has_content>
126 <#assign fechaObj = dateUtil.parseDate("yyyy-MM-dd", fechaInput, locale)>
127 <#if showYear>
128 ${dateUtil.getDate(fechaObj, "dd MMMM yyyy", locale)?replace("de ", "")?replace("d'", "")}
129 <#else>
130 ${dateUtil.getDate(fechaObj, "dd MMMM", locale)?replace("de ", "")?replace("d'", "")}
131 </#if>
132 </#if>
133 </#macro>
S'ha produït un error mentre es processava la plantilla.
The following has evaluated to null or missing:
==> categoriesTipo [in template "236565#236606#1538011" at line 77, column 13]
----
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: #list categoriesTipo as category [in template "236565#236606#1538011" at line 77, column 6]
----
1<#--
2 Plantilla para mostrar actividades en listado
3 TemplateKey: TEMPLATE_ACTIVITIE_LIST
4 -->
5 <#-- INI: ASIGNACIONES DE VALORES -->
6 <#assign
7 viewURL = friendlyURL + '/-/' + .vars['reserved-article-url-title'].data
8 targetURL = "_self"
9 content = ""
10 imgSrc = ""
11 fechaInicio = ""
12 fechaFin = ""
13 nombreCentro = ""
14 title = .vars['reserved-article-title'].data
15 articleId = .vars['reserved-article-id'].data
16 />
17 <#if _categoriesUtil??>
18 <#assign
19 categoriesTipo = _categoriesUtil.getCategoriesFromArticleAndVocabularyName(groupId, articleId, "tipus-de-contingut" )
20 categoriesTematicaPrincipal = _categoriesUtil.getCategoryWithPropertyFromArticleAndVocabularyName(groupId, themeDisplay, articleId,
21"tematica-primaria", "layout")
22 categoriesTematicaSecundaries = _categoriesUtil.getCategoryWithPropertyFromArticleAndVocabularyName(groupId, themeDisplay, articleId,
23"tematiques-secundaries", "layout")
24 />
25 </#if>
26
27 <#-- Extraer años para comparación antes de formatear -->
28 <#assign rawFechaInicio =
29getterUtil.getString(fechasFieldSet.fechasFieldSetFieldSet.fechaInicioFieldSet.fechaInicioFieldSetFieldSet.dateFechaInicio.getData()) />
30 <#assign rawFechaFin = getterUtil.getString(fechasFieldSet.fechasFieldSetFieldSet.fechaFinFieldSet.fechaFinFieldSetFieldSet.dateFechaFin.getData())
31 />
32
33 <#assign showYearFin = false />
34 <#if validator.isNotNull(rawFechaInicio) && rawFechaInicio?has_content
35 && validator.isNotNull(rawFechaFin) && rawFechaFin?has_content>
36 <#assign yearInicio = rawFechaInicio?substring(0, 4) />
37 <#assign yearFin = rawFechaFin?substring(0, 4) />
38 <#if yearInicio != yearFin>
39 <#assign showYearFin = true />
40 </#if>
41 </#if>
42
43 <#assign fechaInicio>
44 <@getCorrectDate rawFechaInicio showYearFin/>
45 </#assign>
46 <#assign fechaFin>
47 <@getCorrectDate rawFechaFin showYearFin />
48 </#assign>
49
50 <#if (cicloFieldSet.cicloFieldSetFieldSet.EnlaceCiclo.getData())?? && !getterUtil.getBoolean(checkShowInPage.getData())>
51 <#assign viewURL = cicloFieldSet.cicloFieldSetFieldSet.EnlaceCiclo.getData() />
52 <#assign targetURL = "_blank" />
53 </#if>
54 <#if (TITLE.getData())??>
55 <#assign title = TITLE.getData() />
56 </#if>
57 <#if (SUMMARY.getData())??>
58 <#assign content = SUMMARY.getData() />
59 </#if>
60 <#if (GENERALIMAGE.getData())?has_content && GENERALIMAGE.getData() != "">
61 <#assign imgSrc = GENERALIMAGE.getData() />
62 </#if>
63 <#if (RESUMENDES.getData())??>
64 <#assign content = RESUMENDES.getData()/>
65 </#if>
66 <#if (NombreCentro.getData())??>
67 <#assign nombreCentro = NombreCentro.getData() />
68 </#if>
69 <#-- FIN: ASSIGNACIONES DE VALORES -->
70
71 <div class="">
72 <a href="${viewURL}" target="${targetURL}" title="${title}" class="pushtag">
73 <img src="${imgSrc}" alt="${title}" />
74 </a>
75 </div>
76 <div class="index-and-title">
77 <#list categoriesTipo as category >
78 <p class="category" style="position:relative;margin: 0;left: 0;"> ${category.getTitle(locale)}</p>
79 </#list>
80 </div>
81 <div class="text-fixe">
82 <a href="${viewURL}" target="${targetURL}" title="${title}" class="pushtag">
83 <h2>${title}</h2>
84 </a>
85 <hr class="tag-separator"/>
86 <div class="tags-and-date display">
87 <#if categoriesTematicaPrincipal?has_content>
88 <#list categoriesTematicaPrincipal as category, enllacCategory >
89 <span class="tags">
90 <a href="${enllacCategory}" title="${category.getTitle(locale)}" >${category.getTitle(locale)}</a>
91 </span>
92 </#list>
93 </#if>
94 <#if categoriesTematicaSecundaries?has_content>
95 <#list categoriesTematicaSecundaries as category, enllacCategory >
96 <span class="tags">
97 <a href="${enllacCategory}" title="${category.getTitle(locale)}" >${category.getTitle(locale)}</a>
98 </span>
99 </#list>
100 </#if>
101 <span class="posted-on">
102 <#if fechaInicio?has_content >
103 <time datetime="${fechaInicio?trim}">${fechaInicio?trim}</time>
104 </#if>
105 <#if fechaInicio?has_content && fechaFin?has_content>
106 <span> - </span>
107 </#if>
108 <#if fechaFin?has_content >
109 <time datetime="${fechaFin?trim}">${fechaFin?trim}</time>
110 </#if>
111 <div class="tags-and-date">
112 <div class="tags">
113 ${nombreCentro}
114 </div>
115 </div>
116 </span>
117 </div>
118 <#if content?has_content>
119 <div class="summary">${content}</div>
120 </#if>
121 </div>
122
123 <#macro getCorrectDate dateField showYear=false>
124 <#assign fechaInput = getterUtil.getString(dateField) />
125 <#if validator.isNotNull(fechaInput) && fechaInput?has_content>
126 <#assign fechaObj = dateUtil.parseDate("yyyy-MM-dd", fechaInput, locale)>
127 <#if showYear>
128 ${dateUtil.getDate(fechaObj, "dd MMMM yyyy", locale)?replace("de ", "")?replace("d'", "")}
129 <#else>
130 ${dateUtil.getDate(fechaObj, "dd MMMM", locale)?replace("de ", "")?replace("d'", "")}
131 </#if>
132 </#if>
133 </#macro>
S'ha produït un error mentre es processava la plantilla.
The following has evaluated to null or missing:
==> categoriesTipo [in template "236565#236606#1538011" at line 77, column 13]
----
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: #list categoriesTipo as category [in template "236565#236606#1538011" at line 77, column 6]
----
1<#--
2 Plantilla para mostrar actividades en listado
3 TemplateKey: TEMPLATE_ACTIVITIE_LIST
4 -->
5 <#-- INI: ASIGNACIONES DE VALORES -->
6 <#assign
7 viewURL = friendlyURL + '/-/' + .vars['reserved-article-url-title'].data
8 targetURL = "_self"
9 content = ""
10 imgSrc = ""
11 fechaInicio = ""
12 fechaFin = ""
13 nombreCentro = ""
14 title = .vars['reserved-article-title'].data
15 articleId = .vars['reserved-article-id'].data
16 />
17 <#if _categoriesUtil??>
18 <#assign
19 categoriesTipo = _categoriesUtil.getCategoriesFromArticleAndVocabularyName(groupId, articleId, "tipus-de-contingut" )
20 categoriesTematicaPrincipal = _categoriesUtil.getCategoryWithPropertyFromArticleAndVocabularyName(groupId, themeDisplay, articleId,
21"tematica-primaria", "layout")
22 categoriesTematicaSecundaries = _categoriesUtil.getCategoryWithPropertyFromArticleAndVocabularyName(groupId, themeDisplay, articleId,
23"tematiques-secundaries", "layout")
24 />
25 </#if>
26
27 <#-- Extraer años para comparación antes de formatear -->
28 <#assign rawFechaInicio =
29getterUtil.getString(fechasFieldSet.fechasFieldSetFieldSet.fechaInicioFieldSet.fechaInicioFieldSetFieldSet.dateFechaInicio.getData()) />
30 <#assign rawFechaFin = getterUtil.getString(fechasFieldSet.fechasFieldSetFieldSet.fechaFinFieldSet.fechaFinFieldSetFieldSet.dateFechaFin.getData())
31 />
32
33 <#assign showYearFin = false />
34 <#if validator.isNotNull(rawFechaInicio) && rawFechaInicio?has_content
35 && validator.isNotNull(rawFechaFin) && rawFechaFin?has_content>
36 <#assign yearInicio = rawFechaInicio?substring(0, 4) />
37 <#assign yearFin = rawFechaFin?substring(0, 4) />
38 <#if yearInicio != yearFin>
39 <#assign showYearFin = true />
40 </#if>
41 </#if>
42
43 <#assign fechaInicio>
44 <@getCorrectDate rawFechaInicio showYearFin/>
45 </#assign>
46 <#assign fechaFin>
47 <@getCorrectDate rawFechaFin showYearFin />
48 </#assign>
49
50 <#if (cicloFieldSet.cicloFieldSetFieldSet.EnlaceCiclo.getData())?? && !getterUtil.getBoolean(checkShowInPage.getData())>
51 <#assign viewURL = cicloFieldSet.cicloFieldSetFieldSet.EnlaceCiclo.getData() />
52 <#assign targetURL = "_blank" />
53 </#if>
54 <#if (TITLE.getData())??>
55 <#assign title = TITLE.getData() />
56 </#if>
57 <#if (SUMMARY.getData())??>
58 <#assign content = SUMMARY.getData() />
59 </#if>
60 <#if (GENERALIMAGE.getData())?has_content && GENERALIMAGE.getData() != "">
61 <#assign imgSrc = GENERALIMAGE.getData() />
62 </#if>
63 <#if (RESUMENDES.getData())??>
64 <#assign content = RESUMENDES.getData()/>
65 </#if>
66 <#if (NombreCentro.getData())??>
67 <#assign nombreCentro = NombreCentro.getData() />
68 </#if>
69 <#-- FIN: ASSIGNACIONES DE VALORES -->
70
71 <div class="">
72 <a href="${viewURL}" target="${targetURL}" title="${title}" class="pushtag">
73 <img src="${imgSrc}" alt="${title}" />
74 </a>
75 </div>
76 <div class="index-and-title">
77 <#list categoriesTipo as category >
78 <p class="category" style="position:relative;margin: 0;left: 0;"> ${category.getTitle(locale)}</p>
79 </#list>
80 </div>
81 <div class="text-fixe">
82 <a href="${viewURL}" target="${targetURL}" title="${title}" class="pushtag">
83 <h2>${title}</h2>
84 </a>
85 <hr class="tag-separator"/>
86 <div class="tags-and-date display">
87 <#if categoriesTematicaPrincipal?has_content>
88 <#list categoriesTematicaPrincipal as category, enllacCategory >
89 <span class="tags">
90 <a href="${enllacCategory}" title="${category.getTitle(locale)}" >${category.getTitle(locale)}</a>
91 </span>
92 </#list>
93 </#if>
94 <#if categoriesTematicaSecundaries?has_content>
95 <#list categoriesTematicaSecundaries as category, enllacCategory >
96 <span class="tags">
97 <a href="${enllacCategory}" title="${category.getTitle(locale)}" >${category.getTitle(locale)}</a>
98 </span>
99 </#list>
100 </#if>
101 <span class="posted-on">
102 <#if fechaInicio?has_content >
103 <time datetime="${fechaInicio?trim}">${fechaInicio?trim}</time>
104 </#if>
105 <#if fechaInicio?has_content && fechaFin?has_content>
106 <span> - </span>
107 </#if>
108 <#if fechaFin?has_content >
109 <time datetime="${fechaFin?trim}">${fechaFin?trim}</time>
110 </#if>
111 <div class="tags-and-date">
112 <div class="tags">
113 ${nombreCentro}
114 </div>
115 </div>
116 </span>
117 </div>
118 <#if content?has_content>
119 <div class="summary">${content}</div>
120 </#if>
121 </div>
122
123 <#macro getCorrectDate dateField showYear=false>
124 <#assign fechaInput = getterUtil.getString(dateField) />
125 <#if validator.isNotNull(fechaInput) && fechaInput?has_content>
126 <#assign fechaObj = dateUtil.parseDate("yyyy-MM-dd", fechaInput, locale)>
127 <#if showYear>
128 ${dateUtil.getDate(fechaObj, "dd MMMM yyyy", locale)?replace("de ", "")?replace("d'", "")}
129 <#else>
130 ${dateUtil.getDate(fechaObj, "dd MMMM", locale)?replace("de ", "")?replace("d'", "")}
131 </#if>
132 </#if>
133 </#macro>
Últimes publicacions
Article
Contribueixen les polítiques de conciliació a augmentar la fecunditat? El paper de les empreses a Espanya*
Olympia Bover, Centro de Estudios Monetarios y Financieros (CEMFI); Nezih Guner y Carlos Sanz, CEMFI i Banco de España; Yuliya Kulikova, Okinawa Institute of Science and Technology (OIST) i International Institute for Applied Systems Analysis (IIASA); Alessandro Ruggieri, CUNEF Universidad;
Les polítiques de conciliació que reforcen l’estabilitat laboral poden contribuir a augmentar la fecunditat, ja que milloren la compatibilitat entre feina i maternitat, tot i que també plantegen reptes per a la contractació femenina.
Article
Benestar emocional en infants amb trastorns del neurodesenvolupament i en les seves famílies
Mari Aguilera, Universitat de Barcelona; Nadia Ahufinger, Universitat Oberta de Catalunya; Ernesto Guerra, Universidad de Chile; i Oriol Verdaguer-Ribas, Universitat de Barcelona, amb la col·laboració de l’Associació Catalana de la Dislèxia (ACD) i l’Associació de Famílies amb Dificultats d’Aprenentatge (AFDA);
Com se senten emocionalment els nens amb trastorns del neurodesenvolupament? Aquest estudi revela més depressió, ansietat i dificultats per regular emocions, especialment quan hi ha diagnòstics múltiples, i demana incloure les famílies com a part clau de l’avaluació i la intervenció.
Article
Bretxes de gènere en la valoració de les condicions laborals
Lídia Farré, CSIC; Marta Curull, Universitat de Barcelona; Laia Maynou, Universitat de Barcelona; i Libertad González, Universitat Pompeu Fabra i BSE;
Què pesa més que el sou? Flexibilitat, desplaçaments curts i un bon clima laboral…, tot i que la diferència més gran sorgeix quan entra en joc la seguretat pel que fa a l’assetjament.