THE ECONOMY OF THE FUTURE

An error occurred while processing the template.
The following has evaluated to null or missing:
==> mostrarTituloH2  [in template "20102#20129#105831" at line 4, column 40]

----
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: #assign hayH2 = getterUtil.getBoolean...  [in template "20102#20129#105831" at line 4, column 1]
----
1<#assign title = .vars['reserved-article-title'].getData()> 
2<div class="containerInterior"> 
3<#assign hayH1 = getterUtil.getBoolean(MostrarTituloH1.getData())> 
4<#assign hayH2 = getterUtil.getBoolean(mostrarTituloH2.getData())> 
5 
6<#if hayH1> 
7    <h1 aria-level="1" role="heading" id="titulo">${layout.getName(locale)}</h1> 
8</#if> 
9<#if hayH2> 
10 
11    <#if TituloContenido.getData()?? && TituloContenido.getData() != ""> 
12        <#assign contenido = TituloContenido.getData()> 
13    <#else> 
14        <#assign contenido = title> 
15    </#if> 
16 
17    <#if hayH1> 
18        <p  id="subtitulo"  
19            aria-level="2"  
20            role="heading"  
21            style=" 
22                color: #007f33 !important; 
23                font-size: 45px; 
24                font-family: 'IberPangea Medium', sans-serif; 
25                line-height: 45px; 
26                margin-top: .75em; 
27                margin-bottom: .9em;"> 
28            ${contenido} 
29        </p> 
30    <#else> 
31        <p  id="subtitulo" 
32            style=" 
33                color: #007f33 !important; 
34                font-size: 45px; 
35                font-family: 'IberPangea Medium', sans-serif; 
36                line-height: 45px; 
37                margin-top: .75em; 
38                margin-bottom: .9em;"> 
39            ${contenido} 
40        </p> 
41    </#if> 
42 
43</#if> 
44 
45<#if getterUtil.getBoolean(MostrarCategorias.getData())> 
46 
47 
48 
49    <#assign journalArticleId = .vars['reserved-article-id'].data> 
50    <#assign journalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")> 
51 
52    <#assign assetCategoryPropertyLocalService = serviceLocator.findService("com.liferay.asset.category.property.service.AssetCategoryPropertyLocalService") /> 
53 
54    <#assign article = journalArticleLocalService.getArticle(groupId, .vars['reserved-article-id'].data) /> 
55    <#assign assetEntryLocalService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetEntryLocalService")> 
56    <#assign asset = assetEntryLocalService.getEntry('com.liferay.journal.model.JournalArticle', article.resourcePrimKey) > 
57    <#assign layoutLocalService = serviceLocator.findService("com.liferay.portal.kernel.service.LayoutLocalService") /> 
58 
59    <p class="tag-categorias"> 
60 
61    <#list asset.getCategories() as category> 
62 
63 
64 
65    <#if assetCategoryPropertyLocalService.fetchCategoryProperty(category.getCategoryId(), "friendlyURL")??> 
66 
67        <#assign categoryFriendly = '/tag/' + assetCategoryPropertyLocalService.fetchCategoryProperty(category.getCategoryId(), "friendlyURL").getValue() /> 
68 
69        <#if layoutLocalService.fetchLayoutByFriendlyURL(groupId, false, categoryFriendly)??> 
70            <#assign  categoryLayout = layoutLocalService.fetchLayoutByFriendlyURL(groupId, false, categoryFriendly) /> 
71            <#assign categoryLayoutURL = portalUtil.getLayoutFullURL(categoryLayout, themeDisplay) /> 
72 
73            <a class="tag-categoria" href="${categoryLayoutURL}">${category.getTitle(locale)?cap_first}</a> 
74 
75        <#else> 
76        <a class="tag-categoria" href="/tag/#">${category.getTitle(locale)?cap_first}</a> 
77 
78        </#if> 
79    </#if> 
80 
81 
82 
83 
84    </#list> 
85 
86    </p> 
87 
88</#if> 
89<div id="contenidoEntradilla">${DescripcionDetalleContenido.getData()}</div> 
90 
91 
92<#if ContenidoWebcofl.getSiblings()?has_content> 
93	<#list ContenidoWebcofl.getSiblings() as cur_ContenidoWebcofl> 
94		<#assign 
95			webContentData = jsonFactoryUtil.createJSONObject(cur_ContenidoWebcofl.getData()) 
96		/> 
97 
98			<#if webContentData?length gt 5> 
99					<@liferay_asset["asset-display"] 
100                                className = webContentData.className 
101                                classPK = webContentData.classPK?number 
102                        /> 
103 
104			</#if> 
105 
106 
107	</#list> 
108</#if> 
109</div> 
110<@liferay_util["html-top"]> 
111<style> 
112    #decPagination div.containerInterior p#subtitulo { 
113        font-family: "Iberpangea Medium"; 
114        font-size: 45px; 
115        line-height: 45px; 
116        color: #007F33; 
117        margin-bottom: 20px; 
118
119 
120 
121    div.contenidoCentrado div.contenidoInterior div.containerInterior p.tag-categorias a.tag-categoria:focus{ 
122        outline: 2px solid rgba(0, 0, 0, 0.7) !important; 
123
124    p.tag-categorias > .tag-categoria { 
125        width: auto !important; 
126        max-width: inherit !important; 
127
128     
129    div.faldon h2 { 
130        width: 100%; 
131        float: left; 
132        font-size: 1.26em; 
133        font-family: IberPangeaText Light, sans-serif; 
134        margin-bottom: 2em; 
135        border-bottom: 1px solid #e0e0e0; 
136        padding-bottom: .8em; 
137        color: #427314 !important; 
138 
139        line-height: 1.35em; 
140        margin-top: .75em; 
141
142    .contenidoInterior div.faldon h2+ul li:before { 
143        margin: .15em 0 0 -1.75em; 
144        font-size: 1em; 
145
146    .cursiva_texto { 
147        font-style: italic; 
148
149    .contenidoInterior h1 { 
150		font-family: 'IberPangea', sans-serif !important; 
151		font-size: 32px !important; 
152		border: none !important; 
153		line-height: 36px !important; 
154		letter-spacing: 0px !important; 
155		color: #00402A !important; 
156		padding-left: 0em !important; 
157		margin-bottom: 14px !important; 
158
159    p span.table a.enlace-actualidad[href*="/tag/"], 
160    p span.table a.enlace-actualidad[href*="/label/"], 
161    p.tag-categorias a.tag-categoria[href*="/tag/"], 
162    p.tag-categorias a.tag-categoria[href*="/label/"]{ 
163        line-height: 23px !important; 
164
165    .contenidoInterior #contenidoEntradilla p.entradilla { 
166        font-family: IberPangeaText, sans-serif !important; 
167        font-size: 17px !important; 
168        line-height: 23px !important; 
169        font-weight: 700; 
170        color: #615D5A !important; 
171        margin-top: 2em; 
172
173       
174    .contenidoInterior h2#subtitulo{ 
175        font-family: 'IberPangea  Medium', sans-serif !important; 
176        margin-bottom: 0.4em; 
177
178   #decPagination div.containerInterior{ 
179        max-width:980px; 
180        margin:0 auto 25px; 
181
182    #decPagination div.containerInterior h1#titulo{ 
183        font-family:"Iberpangea Medium"; 
184        font-size:32px; 
185        line-height:36px; 
186        color:#00402A; 
187        text-transform:none; 
188        border-left:none; 
189        margin-top:20px; 
190
191    #decPagination div.containerInterior h2#subtitulo{ 
192        font-family:"Iberpangea Medium"; 
193        font-size:45px; 
194        line-height:45px; 
195        color:#007F33; 
196        margin-bottom:20px; 
197
198    #decPagination div.containerInterior p.tag-categorias{ 
199        margin-bottom:30px !important; 
200
201    #decPagination div.containerInterior p.tag-categorias a.tag-categoria{ 
202        margin-right:20px; 
203        color:#00402A; 
204
205    #decPagination div.containerInterior div#contenidoEntradilla p.entradilla{ 
206        font-family:"IberpangeaText"; 
207        font-size:20px ; 
208        line-height:26px; 
209        color:#615D5A; 
210
211    @media all and (max-width:500px){ 
212        #decPagination div.containerInterior h1#titulo{ 
213            font-size:26px; 
214            line-height:36px; 
215
216        #decPagination div.containerInterior h2#subtitulo{ 
217            font-size:35px; 
218            line-height:35px; 
219            margin-bottom:20px; 
220
221        #decPagination div.containerInterior div#contenidoEntradilla p.entradilla{ 
222            font-family:"IberpangeaText Bold"; 
223            font-size:16px ; 
224            line-height:24px; 
225
226
227    @media screen and (max-width: 47.95em) { 
228        .contenidoInterior h1 { 
229            font-size: 26px !important; 
230
231        .contenidoInterior h2#subtitulo{ 
232            font-size: 35px; 
233            line-height: 35px; 
234            color: #007F33 !important; 
235            margin-bottom: 1em; 
236
237        .contenidoInterior #contenidoEntradilla p.entradilla { 
238            margin-top: 0.8em; 
239
240        .contenidoInterior #contenidoEntradilla p.entradilla { 
241            line-height: 24px !important; 
242
243
244 
245 
246</style> 
247</@> 
Economía del futuro
Digitalisation and the fight against climate change will be the driving forces of the economy in the coming years.

The arrival of the internet in the 1990s brought with it a more disruptive meaning to the change of millennium. It was no longer a simple numerical variation, but the birth of a new paradigm characterised by the supremacy of the digital over the material. In 2006, only 15 years ago, the three largest companies in the world by market capitalisation were: ExxonMobil (oil), General Electric andGazprom (energy). By the end of this decade, the ranking is already led by companies with a high digital component such as Apple, Microsoft and Amazon. The fight against climate change must now be added to the digital variable.

THE ECONOMY OF THE FUTURE

The world is evolving rapidly and the economy is evolving at an equivalent pace. In addition, it is not spared from the effects of shocks such as that caused by the COVID-19 pandemic which has shaken many sectors. The current crisis has already outlined a future in which the sectors that traditionally boosted GDP the most are going to be overtaken in the medium term by new, growing sectors. New technologies and services for people, with special attention to the elderly, will be engines of growth.

Digitalisation, in line with scrupulous respect for the environment, will mark the economy of the future. A good example of this synergy is smart farming, which allows farmers to maximise their resources and to irrigate, fertilise and spray each piece of land with surgical precision according to its characteristics and weather forecasts. So, this revitalisation, which is already a reality in the cities (smart cities), will make the leap to villages (smart villages).

THE FOURTH INDUSTRIAL REVOLUTION AND THE DIGITAL ECONOMY

Tools such as big data and its capacity to squeeze the juice out of massive amounts of information, the Internet of Things (IoT), artificial intelligence and machine learning have revolutionised the business and industrial world, favouring both efficiency and quality of production processes and the optimisation of decision-making. The Fourth Industrial Revolution is marked by these new technologies and has forced companies to adapt to them (digital darwinism) in order not to succumb.

Industry 4.0 also poses a challenge for developing countries. Currently, around 3.6 billion people in the world do not have access to the internet, depriving them of the essential resources to develop and generate wealth in the 21st century. This inequality in access to the internet is known as the digital divide and its reduction, which is key for everyone to progress at the same pace, is covered by the United Nations' Sustainable Development Goals (SDG 9).

THE COVID-19 CRISIS AND THE GREEN ECONOMY (GREEN RECOVERY)

COVID-19 has hit the world economy hard. Faced with this crisis, multilateral bodies, governments and leading members of the business and financial sector have insisted on the need to undertake agreen recovery such as that proposed in the European Green Deal, citing reasons that can be grouped into two categories:

  • Generation of employment and wealth. According to a report led by Oxford University [PDF], green stimulus policies generate more jobs than traditional ones. In particular, for the International Labour Organization (ILO), changes in energy production and use to combat climate change could create 18 million jobs, as well as higher returns in the short term and a multiplier effect in the long term.
  • The fight against climate change. Some of the effects associated with global warming such as rising sea levels, biodiversity loss, increased risk of pandemics, etc. threaten to cause economic impacts similar to or worse than those of coronavirus, experts warn. This is why it is so important to focus on initiatives such as sustainable food, mobility and design in order to minimise them.

BUSINESS SECTORS OF THE FUTURE

During lock down, some sectors have experienced significant growth, streaming platforms in entertainment and online sales in retail, among others. Their strength, closely linked to digitalisation, gives an idea of which sectors, together with those geared towards sustainability, are in a position to lead economic growth in the future. Let's take a look at some of them:

Future sectors
Keys to future sectors with the most business potential.

  SEE INFOGRAPHIC: Keys to future sectors with the most business potential [PDF]

 Green energy

Fighting against climate change and safeguarding the environment is good for the planet and for the economy. A commitment to renewable energies and to the energy transition towards a decarbonised economy is vital in order to go in that direction, and investors, aware of this, are leaning more and more towards those companies that bet on green energy.

 Sustainable mobility

Reducing pollution is essential in order to minimise the impacts of climate change and to do so it is vital to commit to sustainable mobility. According to BloombergNEF, this sector is expected to reach a 58% market share by 2040 with annual sales of 54 million electric cars. Technologies such as the IoT, 5G or artificial intelligence, among others, will help.

 Digital services

The rise of remote working and video calls, online training and applications for practising sports, among others, as well as the growing importance of cyber security are some of the trends behind the boost to this sector. In this context digital skills are becoming increasingly important for companies, increasing the demand for digital profiles.

 Sustainable food

The market for food from organic farming has quadrupled in the 21st century and more and more countries are including food sustainability in their policies and consumer education guides because of its ability to act against climate change, protect forests, improve health and preserve water resources, among other benefits.

 Sustainable urban development

Despite the revitalisation of rural areas, the majority of the population will be concentrated in urban areas and this is where sustainable urban development comes in. The aim is to create more sustainable, inclusive and liveable cities and for that purpose the creation of sustainable infrastructures will be key. In addition to the green transformation, the digital transformation will also be important (smart cities).