Welcome - Bizarrap - DGO
Que bom ter você aqui! Para começar a assistir aos seus conteúdos agora mesmo, é só acessar este botão:
Se você não conseguir acessar o Extra que acabou de adicionar, tente de novo em 5 minutos.
Um erro ocorreu enquanto processava o modelo.
The following has evaluated to null or missing: ==> cur_Card.Btn.Ativar [in template "20101#20128#285887" at line 60, column 14] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- 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 cur_Card.Btn.Ativar.getData() == ... [in template "20101#20128#285887" at line 60, column 9] ----
1<#function substituirCaminhoCDN(caminho)>
2 <#assign indice=caminho?last_index_of("/documents") + 1>
3 <#assign novoCaminho=caminho?substring(indice)>
4
5 <#return themeDisplay.getCDNBaseURL() + "/" + novoCaminho>
6</#function>
7
8<style>
9 #amz .img-disney-buyflow {
10 background-color: #0578ff;
11}
12.welcome_cards {
13 gap: 40px;
14}
15.activate-disney-info p strong {
16 font-weight: 400 !important;
17 font-family: "IBM Plex Sans", sans-serif !important;
18 font-size: 14px;
19}
20.activate-disney-info .activateProductButton {
21 background: none;
22 padding: 0;
23 font-family: Poppins;
24 font-weight: 600;
25 font-size: 14px;
26 color: #077cc0;
27 margin-top: 20px;
28}
29.activate-disney-info a {
30 text-align: left;
31 }
32@media (max-width: 576px) {
33 .dtvgo #amazon .img-disney-buyflow img {
34 width: auto !important;
35 height: unset;
36 margin: 0 auto !important;
37 }
38 .activate-disney-info a {
39 text-align: center;
40 }
41}
42</style>
43<#if Card.getSiblings()?has_content>
44<div class="welcome_cards dtvgo cards-activate-extras d-flex mb-5 align-items-center flex-wrap justify-content-center">
45 <#list Card.getSiblings() as cur_Card>
46 <div id="${cur_Card.ID.getData()}" class="activate-disney-buyflow hide">
47 <#if (cur_Card.Img.getData())?? && cur_Card.Img.getData() != "">
48 <div class="img-disney-buyflow">
49 <img
50 alt="${cur_Card.Img.getAttribute("alt")}"
51 data-fileentryid="${cur_Card.Img.getAttribute("fileEntryId")}"
52 src="${substituirCaminhoCDN(cur_Card.Img.getData())}"
53 />
54 </div>
55 </#if>
56 <div class="activate-disney-info">
57 <h1>${cur_Card.Titulo.getData()}</h1>
58 <p>${cur_Card.Subtitulo.getData()}</p>
59
60 <#if cur_Card.Btn.Ativar.getData() == "true">
61 <a data-senna-off="true" href="${cur_Card.Btn.LinkParaPagina.getFriendlyUrl()}">
62 <button class="activateProductButton">
63 ${cur_Card.Btn.Texto.getData()}
64 </button>
65 </a>
66 </#if>
67 </div>
68 </div>
69 </#list>
70</div>
71</#if>