An error occurred while processing the template.
The following has evaluated to null or missing: ==> themeDisplay.getThemeSetting("show-breadcrumb") [in template "20115#20151#CGV" at line 2, column 27] ---- 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 showBreadcrumb = themeDisplay... [in template "20115#20151#CGV" at line 2, column 1] ----
1<#assign serviceContext = staticUtil["com.liferay.portal.kernel.service.ServiceContextThreadLocal"].getServiceContext()>
2<#assign showBreadcrumb = themeDisplay.getThemeSetting("show-breadcrumb")?boolean />
3<#if serviceContext.getThemeDisplay().getThemeSetting("v2-look-and-feel")?has_content && serviceContext.getThemeDisplay().getThemeSetting("v2-look-and-feel")!="">
4 <#assign v2_enabled = serviceContext.getThemeDisplay().getThemeSetting("v2-look-and-feel")?boolean />
5<#else>
6 <#assign v2_enabled = false />
7</#if>
8
9<#if v2_enabled>
10
11 <!-- hero-banner position -->
12 <section class="h__banner">
13 <div class="hero-banner hero-banner--mobile">
14 <div class="hero-banner__mask hero-banner__mask--mobile">
15 <#if Background.getData()?? && Background.getData() != "">
16 <picture>
17 <img class="lazyload" src="${Background.getData()}" data-fileentryid="${Background.getAttribute("fileEntryId")}" data-src="${Background.getData()}" data-srcset="${Background.getData()}" />
18 </picture>
19 </#if>
20 <div class="hero-banner__mask hero-banner__mask--mobile">
21 <div class="hero-banner__container">
22 <div class="hero-banner__content text-left hide-xs">
23 <#if !showBreadcrumb>
24 <div class="b__breadcrumbs">
25 <#-- BREADCRUMBS -->
26 <@liferay.breadcrumbs />
27 </div>
28 </#if>
29 <h2 class="font-bold-publicoheadline font-display-4 color-white">${Title.getData()}</h2>
30 <p class="hero-banner__text font-medium color-white">${Version.getData()}</p>
31 </div>
32 </div>
33 </div>
34 </div>
35 </div>
36 <!-- /hero-banner -->
37
38 <!-- full content -->
39
40 <div class="article-full__content">
41 <div class="article-full__container article-full__container--position container pt-5 pb-5">
42 <div class="article-full__detail article-full__detail--mobile sheme-white show-xs">
43 <div class="article-full__container">
44 <#if !showBreadcrumb>
45 <div class="b__breadcrumbs">
46 <#-- BREADCRUMBS -->
47 <@liferay.breadcrumbs />
48 </div>
49 </#if>
50 <h2 class="font-bold-publicoheadline font-display-4 color-white">${Title.getData()}</h2>
51 <p class="hero-banner__text font-medium color-white">${Version.getData()}</p>
52 </div>
53 </div>
54 <div class="article-full__row--full">
55 <div class="article-full__left">
56 <#if CgvTitle.getSiblings()?has_content>
57 <#list CgvTitle.getSiblings() as cur_CgvTitle>
58 <div class="article-full__text">
59 <h3 class="article-full__left--title font-x-big font-bold-publicoheadline">${cur_CgvTitle.getData()}</h3>
60 <p>${cur_CgvTitle.Cgv.getData()}</p>
61 </div>
62 </#list>
63 </#if>
64 </div>
65 </div>
66 </div>
67 </div>
68 </section>
69
70<#else>
71 <section class="t_cgv">
72
73 <#if Background.getData()?? && Background.getData() != "">
74 <header class="t_cgv__header t_block is-colored" style="background-image: url('${Background.getData()}')">
75 <#else>
76 <header class="t_cgv__header t_block is-colored">
77 </#if>
78
79 <div class="t_cgv__headerInner t_block__inner">
80 <h2 class="t_mainTitle">${Title.getData()}</h2>
81
82 <p class="t_mainText">${Version.getData()}</p>
83
84 </div>
85 </header>
86
87 <ol class="t_cgv__list t_block__inner">
88
89 <#if CgvTitle.getSiblings()?has_content>
90 <#list CgvTitle.getSiblings() as cur_CgvTitle>
91
92 <li class="t_cgv__listElement">
93 <h3 class="t_cgv__listElement__title">${cur_CgvTitle.getData()}</h3>
94 <p class="t_mainText">${cur_CgvTitle.Cgv.getData()}</p>
95 </li>
96
97 </#list>
98 </#if>
99
100 </ol>
101 </section>
102</#if>