Furthering the Conversation around Biomarker Testing
An error occurred while processing the template.
The following has evaluated to null or missing: ==> Banner_Image [in template "354019#354053#12431542" at line 17, column 6] ---- 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 Banner_Image.getData()?? && Banne... [in template "354019#354053#12431542" at line 17, column 1] ----
1<#assign date_Data = getterUtil.getString(date.getData())>
2
3<#if validator.isNotNull(date_Data)>
4 <#assign date_DateObj = dateUtil.parseDate("yyyy-MM-dd", date_Data, locale)>
5
6 <#assign publishDate = dateUtil.getDate(date_DateObj, "dd MMM yyyy", locale)>
7</#if>
8
9
10
11<div class="our-story">
12
13<div class="innerPageHead">
14<h1>${pageTitle.getData()}</h1>
15</div>
16<div class="our-story-poster">
17<#if Banner_Image.getData()?? && Banner_Image.getData() != "">
18 <img data-fileentryid="${Banner_Image.getAttribute("fileEntryId")}" alt="${Banner_Image.getAttribute("alt")}" src="${Banner_Image.getData()}" />
19<#else>
20 <#if poster.getData()?? && poster.getData() != "">
21 <img data-fileentryid="${poster.getAttribute("fileEntryId")}" alt="${poster.getAttribute("alt")}" src="${poster.getData()}" />
22 </#if>
23</#if>
24</div>
25<div class="container_1k">
26<div class="row our-story-header">
27<div class="col-md-2 story-date"><span class="glyphicon glyphicon-calendar" aria-hidden="true"></span> ${publishDate}</div>
28<div class="col-md-3 story-label"><span class="label label-success">${category.getData()}</span></div>
29<div class="col-md-2">
30<!-- Extra small button group -->
31<div class="btn-group our-story-social-icons">
32 <button class="btn btn-default btn-xs dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
33 Share <span class="caret"></span>
34 </button>
35 <ul class="dropdown-menu">
36 <li class="fb-link"><a href="#" class="our-story-fb-share">Facebook</a></li>
37 <li class="tweeter-link"><a href="#" class="our-story-twitter-share">Twitter</a></li>
38 <li class="linkedin-link"><a href="#" class="our-story-linkedin-share">LinkedIn</a></li>
39 <li class="mailshare-link"><a href="mailto:?subject=${pageTitle.getData()}&body=${themeDisplay.getPortalURL()}${themeDisplay.getURLCurrent()}" class="our-story-mailshare-share">Mail</a></li>
40 </ul>
41</div>
42</div>
43
44<div class="col-md-5 story-author"><em>${author.getData()}</em></div>
45</div>
46</div>
47
48<!-- Content -->
49<div class="container_1k">
50 <div class="our-story-main-content">
51 ${content.getData()}
52 <#if Section.getSiblings()?has_content>
53 <#list Section.getSiblings() as cur_Section>
54 <div style="display: inline-block; margin-bottom: 10px;">
55 <#if cur_Section.Section_Type.getData() == "video" && cur_Section.Section_Video.getData() != "">
56 <video controls="" height="auto" poster="${cur_Section.Section_Image.getData()}" style="float:${cur_Section.Section_Align.getData()}; padding: 0px !important; max-width:33%; width:100%; border: 1px solid black; ${(cur_Section.Section_Align.getData() == 'left')?then('margin: 0px 20px 15px 0px;','margin: 0px 0px 15px 20px;')} ">
57 <source src="${cur_Section.Section_Video.getData()}" type="video/mp4"> Your browser does not support the video tag.
58 </video>
59 <#elseif cur_Section.Section_Image.getData() != "">
60 <p class="captionCard" style="float: ${cur_Section.Section_Align.getData()}; max-width: 33%;padding-bottom: 5px;width: 100%; ${(cur_Section.Section_Align.getData() == 'left')?then('margin: 0px 20px 15px 0px;','margin: 0px 0px 15px 20px;')}"><img src="${cur_Section.Section_Image.getData()}" alt="${cur_Section.Section_Image.getAttribute("alt")}" style="border: 1px solid black; width: 100%">
61 <#if cur_Section.Section_Image.Section_Image_Subtitle?? && cur_Section.Section_Image.Section_Image_Subtitle.getData() != "">
62 <span style="text-align: center !important; display: block; border-bottom: 1px solid black; font-size: 12px;">
63 <strong>
64 ${cur_Section.Section_Image.Section_Image_Subtitle.getData()}
65 </strong></span>
66 </#if>
67 </#if>
68 <#if Section??>
69 <#if cur_Section.getData() != "">
70 <h2 class="smallGray" style="
71 margin-bottom: 15px;
72 font-size: 18px;
73 padding-bottom: 0.5em !important;
74 display: inline-block;
75 padding: 0px;
76 margin-top: -10px;
77 ">
78 <span style="">${cur_Section.getData()}</span></h2>
79 </#if>
80 </#if>
81 ${cur_Section.Section_Content.getData()}
82 </div>
83 </#list>
84 </#if>
85 <#if Content_After??>
86 ${Content_After.getData()}
87 </#if>
88 </div>
89</div>
90<!-- Footer -->
91
92<div class="container_1k">
93<div class="row our-story-footer">
94<div class="col-md-2 story-date"><span class="glyphicon glyphicon-calendar" aria-hidden="true"></span> ${publishDate}</div>
95<div class="col-md-3 story-label"><span class="label label-success">${category.getData()}</span></div>
96<div class="col-md-2">
97<!-- Extra small button group -->
98<div class="btn-group our-story-social-icons">
99 <button class="btn btn-default btn-xs dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
100 Share <span class="caret"></span>
101 </button>
102 <ul class="dropdown-menu">
103 <li class="fb-link"><a href="#" class="our-story-fb-share">Facebook</a></li>
104 <li class="tweeter-link"><a href="#" class="our-story-twitter-share">Twitter</a></li>
105 <li class="linkedin-link"><a href="#" class="our-story-linkedin-share">LinkedIn</a></li>
106 <li class="mailshare-link"><a href="mailto:?subject=${pageTitle.getData()}&body=${themeDisplay.getPortalURL()}${themeDisplay.getURLCurrent()}" class="our-story-mailshare-share">Mail</a></li>
107 </ul>
108</div>
109</div>
110
111<div class="col-md-5 story-author"><em>${author.getData()}</em></div>
112
113</div>
114</div>
115<div class="visit-our-stories">
116 <div class="container_1k">
117 <button type="button" class="btn btn-primary btn-sm" onclick="window.location.href='/our-stories'">Visit Our Stories</button>
118 </div>
119</div>
120
121</div>
122<style type="text/css">@media (min-width: 320px) and (max-width: 900px) {
123 video, .captionCard {
124 max-width: 100% !important;
125 margin: 0px 0px 15px 0px !important;
126 }
127
128 .captionCard + h2 {
129 width: 100%;
130 }
131 }
132 </style>
OurStorySuggestions
Suggestions
Translating the Science of ADCs for Patients with Cancer
Informed patients are empowered patients. Which is why helping people with cancer understand their disease, as well as how available treatment options might work for them, is a critical focus of our patient advocacy efforts.
View more
Crafting Meaningful Connections to Benefit Patients
Business development is the craft of making connections. Whether with other companies or within our organization, we need to build those bonds that allow us to be successful.
View more
Beyond Positive & Negative: The Spectrum of HER2 Expression in Cancer
Cancer research and development is a dynamic and ever-evolving field. One significant area of focus is the role of HER2.
View more