Ocorreu um erro ao processar o template.
The following has evaluated to null or missing: ==> fieldSetPage [in template "20096#20121#118978" at line 54, column 8] ---- 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: #if fieldSetPage.getSiblings()?has_co... [in template "20096#20121#118978" at line 54, column 3] ----
1<style>
2 .content-file .content {
3 margin-bottom: 2.813rem;
4 }
5
6 .content-file .divider {
7 margin: 2.25rem 0 3.75rem 0;
8 }
9
10 .content-file .icon-link {
11 margin-right: 0.938rem;
12 }
13
14 .content-file .link-page {
15 color: #1E1E1E;
16 font-family: var(--font-family-monospace);
17 font-weight: var(--font-weight-normal);
18 font-size: var(--font-size-base);
19 }
20
21 .content-file .links-page {
22 margin-bottom: 1.5rem;
23 }
24
25 .content-file .divider-files {
26 margin: 1.063rem 0 1.063rem 0;
27 border-style: dashed;
28 border-color: #BBDCFB;
29 }
30
31 .content-file .icon-file {
32 margin-right: 0.875rem;
33 }
34
35 .content-file .icon-file {
36 margin-right: 0.875rem;
37 }
38
39 .content-file .link-file {
40 color: var(--primary);
41 font-family: var(--font-family-monospace);
42 font-weight: var(--font-weight-normal);
43 font-size: var(--font-size-base);
44 }
45</style>
46
47<div class="content-file d-flex flex-column">
48 <#if (content.getData())?has_content>
49 <div class="content">
50 ${content.getData()}
51 </div>
52 </#if>
53
54 <#if fieldSetPage.getSiblings()?has_content>
55 <#list fieldSetPage.getSiblings() as cur_fieldSetPage>
56 <div class="links-page">
57 <svg class="icon-link" width="7" height="12" viewBox="0 0 7 12" fill="#00427C"
58 xmlns="http://www.w3.org/2000/svg">
59 <path
60 d="M4.3998 6.05841L-1.93915e-10 1.65861L1.25708 0.401535L6.91394 6.05841L1.25708 11.7152L-1.55132e-09 10.4581L4.3998 6.05841Z"
61 fill="#00427C" />
62 </svg>
63 <a class="link-page" data-senna-off="true" href="${cur_fieldSetPage.fieldSetPageLink.getFriendlyUrl()}">
64 ${cur_fieldSetPage.fieldSetPageDescription.getData()}
65 </a>
66 </div>
67 </#list>
68 </#if>
69
70 <hr class="divider dropdown-divider">
71
72 <#if fieldsetFile.getSiblings()?has_content>
73 <#list fieldsetFile.getSiblings() as cur_fieldsetFile>
74 <a class="link-file d-flex align-items-center" href="${cur_fieldsetFile.fieldSetFileUpload.getData()}">
75 <svg class="icon-file" width="24" height="28" viewBox="0 0 24 28" fill="none"
76 xmlns="http://www.w3.org/2000/svg">
77 <g clip-path="url(#clip0_5282_221)">
78 <path
79 d="M9.99955 7.70001C9.99955 9.9085 9.39195 12.5122 8.36625 14.9148C7.33684 17.326 5.94825 19.3903 4.5 20.6068L6.07253 22.865C9.97581 20.1326 14.2974 18.259 18.4777 18.886L19.0879 16.1718C15.5243 14.9246 12.6662 11.1859 12.6662 7.70001H9.99955ZM10.7995 16.0603C11.1561 15.2253 11.4719 14.3588 11.7379 13.4799C12.3667 14.4944 13.1401 15.4255 14.0131 16.2334C12.7041 16.4796 11.4217 16.8835 10.1799 17.3987C10.3995 16.96 10.6065 16.5127 10.7995 16.0603Z"
80 fill="#D20B0B" />
81 <path
82 d="M2.66667 2.8H16V8.4H21.3333V25.2H2.66667V2.8ZM1.33133 0C0.596653 0 0 0.62167 0 1.38852V26.6115C0 27.3626 0.593013 28 1.32453 28H22.6755C23.4068 28 24 27.3685 24 26.5895L23.9996 7L17.3333 0H1.33133Z"
83 fill="#1E1E1E" />
84 </g>
85 <defs>
86 <clipPath id="clip0_5282_221">
87 <rect width="24" height="28" fill="white" />
88 </clipPath>
89 </defs>
90 </svg>
91 ${cur_fieldsetFile.fieldSetLinkDescription.getData()}
92 </a>
93 <hr class="divider-files dropdown-divider">
94 </#list>
95 </#if>
96
97</div>