GNP Cuida tu Salud
Um erro ocorreu enquanto processava o modelo.
The following has evaluated to null or missing: ==> RENGLON [in template "34298#34324#74273" at line 77, column 10] ---- Tip: If the failing expression is known to be 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 RENGLON.getSiblings()?has_content [in template "34298#34324#74273" at line 77, column 5] ----
1<style>
2.generic_html {
3 color: #165890;
4 font-weight: 300;
5 font-family: "Gotham Book";
6 font-size: 14px;
7}
8.generic_html li {
9 font-family: Gotham Bold;
10 font-size: 12px;
11 margin-bottom: 10px;
12 font-weight: 100;
13}
14
15.generic_html img {
16 text-align: center;
17 margin: 0 auto;
18 display: block;
19}
20
21.generic_html b {
22 font-weight: 900;
23}
24.generic_html h2{
25 font-weight:300;
26 font-size:30px;
27 text-align:center;
28}
29.generic_html {
30 color: #165890;
31 font-weight: 300;
32 font-family: "Gotham Book";
33 font-size: 14px;
34}
35.HTMLrow {
36 display: flex;
37}
38.portlet-msg-info a {
39 display: block;
40 background: #084168;
41 color: white;
42 font-size: 25px;
43 padding: 20px 20px 5px 20px;
44 transition:0.3s ease-in;
45}
46.portlet-msg-info a:hover {
47 text-decoration:none;
48 opacity:0.9;
49}
50
51.generic_html .portlet-msg-info {
52 background: unset;
53 border: unset;
54 color: unset;
55 width: fit-content;
56 margin: 20px auto;
57}
58.generic_html .portlet-msg-alert {
59 background: none;
60 border: none;
61 font-size: 20px;
62 font-weight: bold;
63 font-family: 'Gotham Bold';
64 text-align: center;
65 color: #964405;
66}
67.generic_html table td {
68border: 1px solid #bdbdbd;
69}
70
71.generic_html table {
72 margin:0 auto;
73 border-spacing: 0;
74}
75</style>
76<div class="generic_html">
77 <#if RENGLON.getSiblings()?has_content>
78 <#list RENGLON.getSiblings() as cur_RENGLON>
79 <div class="HTMLrow">
80 <#if cur_RENGLON.COLUMNA.getSiblings()?has_content>
81 <#list cur_RENGLON.COLUMNA.getSiblings() as cur_COLUMNA>
82 <div class="HTMLcolumn col-sm-12 col-md-${cur_COLUMNA.col_size.getData()}">
83 ${cur_COLUMNA.HTML95ne.getData()}
84 </div>
85 </#list>
86 </#if>
87 </div>
88 </#list>
89 </#if>
90</div>