Premio miglior tesi magistrale in comunicazione 2024 - Corecom
An error occurred while processing the template.
The following has evaluated to null or missing: ==> content [in template "10155#10195#2089289" at line 21, column 31] ---- 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: ${content.getData()} [in template "10155#10195#2089289" at line 21, column 29] ----
1<!-- Subheader -->
2<div class="rt-subheader rt-subheader--has-image rt-subheader--section rt-subheader--section-accoglienza-detail"
3style='<#if backgroundImage.getData()?? && backgroundImage.getData() != "">background-image: url(${backgroundImage.getData()})</#if>'>
4 <div class="rt-subheader__content">
5 <div class="container rt-container">
6 <div class="row">
7 <div class="rt-subheader__text col-md-7">
8 <h1 class="rt-subheader__title">${.vars['reserved-article-title'].data}</h1>
9 </div>
10 </div>
11 </div>
12
13 </div>
14</div>
15<!-- ./END Subheader -->
16<div class="container rt-container">
17 <div class="row">
18 <!-- 1 -->
19 <div class="col-md-12 col-lg-8 rt-col-half">
20 <div class="rt-page__content">
21 ${content.getData()}
22 </div>
23 </div>
24 <!-- END // 1 -->
25 <!-- 2 -->
26 <div class="col-md-12 col-lg-4 rt-col-half">
27 <a id="sharebtn" aria-label="Condividi il contenuto" title="Condividi il contenuto" class="rt-btn rt-btn-light rt-btn-border rt-btn-full" href=""><span class="rt-btn-round__label">Condividi</span> <i class="fas fa-share"></i></a>
28 <#if insights?? && insights.getData()?has_content >
29 <div class="rt-wrapper">
30 <div class="rt-container">
31 <section class="rt-section rt-section--box rt-section--box-column rt-section--has-style">
32 <div class="rt-section-title-wrapper has-border">
33 <h2 class="rt-section-title rt-section-title--small">Approfondimenti</h2>
34 </div>
35 <div class="rt-section__wrapper">
36 <div class="rt-box rt-box--content-update">
37 <div class="rt-box__content">
38 <div class="rt-box__text">
39 <div class="rt-text-expandable">
40 <div class="rt-text-expandable-content">
41 ${insights.getData()}
42 </div>
43 <a tabindex="0" class="rt-section-expand" href="#">Vedi tutto</a>
44 </div>
45 </div>
46 </div>
47 </div>
48 </div>
49 </section>
50 </div>
51 </#if>
52 </div>
53 <!-- END // 2 -->
54 </div>
55</div>