Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> dms  [in template "33701#33738#D3_PLASMA_DONATION_CENTER_DETAIL" at line 344, column 22]

----
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 dms.getData()?has_content  [in template "33701#33738#D3_PLASMA_DONATION_CENTER_DETAIL" at line 344, column 17]
----
1<#include d3_macros/> 
2<#assign JournalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")> 
3<#assign d3DonorCompensationLocalService = serviceLocator.findService("com.grifols.d3.donor.compensation.service.DonorCompensationLocalService") /> 
4<#assign portalURL=themeDisplay.getPortalURL()> 
5<#assign portalLanguage=themeDisplay.getLanguageId()[0..1]> 
6 
7<#assign centerImage=""> 
8<#assign centerImageAltText=""> 
9<#assign centerInformationDescription = ""/> 
10 
11<#assign sharedDescriptionContent=""> 
12<#assign sharedDescriptionArticle = JournalArticleLocalService.getLatestArticleByUrlTitle(scopeGroupId, "center-details-shared-description", 0)> 
13 
14<#if sharedDescriptionArticle??> 
15    <#assign sharedDescriptionContent = JournalArticleLocalService.getArticleContent(scopeGroupId, sharedDescriptionArticle.getArticleId(), "", locale, objThemeDisplay)> 
16 
17    <#if sharedDescriptionContent?has_content && sharedDescriptionContent?trim?index_of("{") == 0> 
18        <#assign shared_description = jsonFactoryUtil.createJSONObject(sharedDescriptionContent?trim)> 
19		 
20        <#if shared_description??> 
21            <#if shared_description.getJSONObject("center_image")?has_content> 
22                <#assign centerImageContent = shared_description.getJSONObject("center_image")> 
23                <#if centerImageContent.getString("content")?has_content > 
24                    <#assign centerImage = centerImageContent.getString("content")> 
25                </#if> 
26 
27                <#if centerImageContent.getString("alt_text")?has_content > 
28                    <#assign centerImageAltText = centerImageContent.getString("alt_text")> 
29                </#if> 
30            </#if> 
31 
32            <#if shared_description.getJSONObject("center_ammenities")?has_content> 
33                <#assign centerAmmenitiesContent = shared_description.getJSONObject("center_ammenities")> 
34                <#if centerAmmenitiesContent.getString("title")?has_content > 
35                    <#assign centerAmmenitiesTitle = centerAmmenitiesContent.getString("title")> 
36                </#if> 
37 
38                <#if centerAmmenitiesContent.getString("description")?has_content > 
39                    <#assign centerAmmenitiesDescription = centerAmmenitiesContent.getString("description")> 
40                </#if> 
41 
42                <#if centerAmmenitiesContent.getJSONArray("ammenities")?has_content && centerAmmenitiesContent.getJSONArray("ammenities")?is_hash> 
43                    <#assign centerAmmenitiesList = centerAmmenitiesContent.getJSONArray("ammenities")> 
44                </#if> 
45            </#if> 
46 
47            <#if shared_description.getJSONObject("donation_requirements")?has_content> 
48                <#assign donationRequirementsContent = shared_description.getJSONObject("donation_requirements")> 
49                <#if donationRequirementsContent.getString("title")?has_content > 
50                    <#assign donationRequirementsTitle = donationRequirementsContent.getString("title")> 
51                </#if> 
52 
53                <#if donationRequirementsContent.getJSONArray("requirements")?has_content && donationRequirementsContent.getJSONArray("requirements")?is_hash> 
54                    <#assign donationRequirementsList = donationRequirementsContent.getJSONArray("requirements")> 
55                </#if> 
56            </#if> 
57 
58            <#if shared_description.getJSONObject("steps_to_donate")?has_content> 
59                <#assign stepsToDonateContent = shared_description.getJSONObject("steps_to_donate")> 
60                <#if stepsToDonateContent.getString("title")?has_content > 
61                    <#assign stepsToDonateTitle = stepsToDonateContent.getString("title")> 
62                </#if> 
63 
64                <#if stepsToDonateContent.getJSONArray("steps")?has_content && stepsToDonateContent.getJSONArray("steps")?is_hash> 
65                    <#assign stepsToDonateList = stepsToDonateContent.getJSONArray("steps")> 
66                </#if> 
67            </#if> 
68 
69            <#if shared_description.getJSONObject("center_information")?has_content> 
70                <#assign centerInformationContent = shared_description.getJSONObject("center_information")> 
71                <#if centerInformationContent.getString("title")?has_content > 
72                    <#assign centerInformationTitle = centerInformationContent.getString("title")> 
73                </#if> 
74 
75                <#if centerInformationContent.getString("default_description")?has_content > 
76                    <#assign centerInformationDescription = centerInformationContent.getString("default_description")> 
77                </#if> 
78            </#if> 
79             
80            <#if shared_description.getJSONObject("specialty_programs")?has_content> 
81                <#assign specialtyProgramsContent = shared_description.getJSONObject("specialty_programs")> 
82                <#if specialtyProgramsContent.getString("title")?has_content > 
83                    <#assign specialtyProgramsTitle = specialtyProgramsContent.getString("title")> 
84                </#if> 
85 
86                <#if specialtyProgramsContent.getString("description")?has_content > 
87                    <#assign specialtyProgramsDescription = specialtyProgramsContent.getString("description")> 
88                </#if> 
89 
90                <#if specialtyProgramsContent.getJSONArray("programs")?has_content && specialtyProgramsContent.getJSONArray("programs")?is_hash> 
91                    <#assign specialtyProgramsList = specialtyProgramsContent.getJSONArray("programs")> 
92                </#if> 
93            </#if> 
94 
95			<#if shared_description.getJSONObject("refer_friend")?has_content> 
96                <#assign referAFriendContent = shared_description.getJSONObject("refer_friend")> 
97                <#if refer_friend_text?? && refer_friend_text.getData()?has_content> 
98                    <#assign referFriendTitle = refer_friend_text.getData()> 
99                <#elseif referAFriendContent.getString("title")?has_content > 
100                    <#assign referFriendTitle = referAFriendContent.getString("title")> 
101                </#if> 
102				<#if referAFriendContent.getString("image")?has_content > 
103                    <#assign referAFriendImage = referAFriendContent.getString("image")> 
104                </#if> 
105            </#if> 
106			 
107			<#if shared_description.getJSONObject("donor_compensation")?has_content> 
108                <#assign donorCompensationContent = shared_description.getJSONObject("donor_compensation")> 
109 
110				<#if donorCompensationContent.getString("image")?has_content > 
111                    <#assign donorCompensationImage = donorCompensationContent.getString("image")> 
112                </#if> 
113            </#if> 
114			 
115			<#if shared_description.getString("legal_disclaimer")?has_content> 
116                <#assign legalDisclaimer = shared_description.getString("legal_disclaimer")> 
117            </#if> 
118        </#if> 
119    </#if> 
120</#if> 
121 
122 
123<#assign centerName = ""/> 
124<#if main_title?? && main_title.getData()?has_content> 
125    <#assign centerName = main_title.getData()/> 
126</#if> 
127 
128<#if center_name?? && center_name.getData()?has_content> 
129    <#assign centerName = center_name.getData()/> 
130</#if> 
131 
132<#assign centerLogo = ""/> 
133<#if picture?? && picture.getData()?has_content> 
134    <#assign centerLogo = picture.getData()/> 
135</#if> 
136 
137<#assign centerState = ""/> 
138<#if state?? && state.getData()?has_content> 
139    <#assign centerState = state.getData()/> 
140</#if> 
141 
142<#assign centerAddress = ""/> 
143<#if address?? && address.getData()?has_content> 
144    <#assign centerAddress = address.getData()/> 
145</#if> 
146 
147<#assign centerCity = ""/> 
148<#if city?? && city.getData()?has_content> 
149    <#assign centerCity = city.getData()/> 
150</#if> 
151 
152<#assign centerZipCode = ""/> 
153<#if zipcode?? && zipcode.getData()?has_content> 
154    <#assign centerZipCode = zipcode.getData()/> 
155</#if> 
156 
157<#assign centerPhone = ""/> 
158<#if phone?? && phone.getData()?has_content> 
159    <#assign centerPhone = phone.getData()/> 
160</#if> 
161 
162<#if center_image?? && center_image.getData()?has_content> 
163    <#assign centerImage = center_image.getData()/> 
164</#if> 
165 
166<#-- 
167<#if information?? && information.getData()?has_content> 
168    <#assign centerInformationDescription = information.getData()/> 
169</#if> 
170--> 
171 
172<#assign centerAddress = ""/> 
173<#if address?? && address.getData()?has_content> 
174    <#assign centerAddress = address.getData()/> 
175</#if> 
176 
177 
178<#assign centerDMS = ""/> 
179<#if dms?? && dms.getData()!=''> 
180    <#assign centerDMS = dms.getData()> 
181</#if> 
182 
183<#assign hoursMicrodata = "" /> 
184 
185<#assign locale_prefix = "" /> 
186<#if locale = "en_US"> 
187	<#assign locale_prefix = "/en" /> 
188<#else> 
189	<#assign locale_prefix = "/es" /> 
190</#if> 
191 
192<#assign showCompensationSection = !hide_compensation_section?? || (hide_compensation_section?? && !getterUtil.getBoolean(hide_compensation_section.getData())) /> 
193 
194<div class="d3-detail-page" style="padding: 0"> 
195    <div class="d3-promotional-block"> 
196        <div class="promotional-text on-left"> 
197            <div class="container"> 
198                <div class="d3-col-xs-6 d3-col-md-10"> 
199                    <#if centerLogo != ""> 
200                        <img 
201                            alt="Grifols Center Logo" 
202                            src="${centerLogo}" 
203                        /> 
204                    </#if> 
205                     
206                    <#assign centerNameState = ""/> 
207                    <#if centerName != ""> 
208                        <#assign centerNameState = centerName/> 
209                         
210                        <#if centerState != ""> 
211                            <#assign centerNameState += (", " + centerState)/> 
212                        </#if> 
213                    </#if> 
214                     
215                    <#if centerNameState != ""> 
216                        <h1> 
217                            ${centerNameState} 
218                        </h1> 
219                    </#if> 
220                     
221                    <#if centerAddress != "" || centerPhone != "" > 
222                        <p> 
223                            <#if centerAddress != ""> 
224                                ${centerAddress} <br /> 
225 
226                                <#if centerCity != ""> 
227                                    ${centerCity} 
228                                </#if> 
229 
230                                <#if centerState != ""> 
231                                    ${centerState} 
232                                </#if> 
233 
234                                <#if centerZipCode != ""> 
235                                    ${centerZipCode} 
236                                </#if> 
237                            </#if> 
238 
239                            <#if centerPhone != ""> 
240                                <br />${centerPhone} 
241                            </#if> 
242                        </p> 
243                    </#if> 
244 
245                    <div class="button-row"> 
246                        <#if schedule_a_visit?? && schedule_a_visit.getData()?has_content> 
247                            <#if centerDMS != "" && portalLanguage?? && portalLanguage?has_content> 
248                                <#assign appointmentURL =  "https://www.grifolsplasmadonorhub.com/guest/schedule-donation?centerCode=" + centerDMS + "&lang=" + portalLanguage /> 
249                            </#if> 
250                             
251                            <#if appointmentURL?? && appointmentURL?has_content> 
252                                <a 
253                                    class="btn btn-primary btn-icon--left" 
254                                    href="${appointmentURL}" 
255                                    target="_blank" 
256
257                                    <i class="ph-bold ph-calendar"></i> 
258                                    <@liferay.language key="com.grifols.d3.schedule-appointment"/> 
259                                </a> 
260                            </#if> 
261                        </#if> 
262                         
263                        <#assign googleMapsURL = ""/> 
264                        <#if driving_directions?? && driving_directions.getData()?has_content> 
265                            <#assign googleMapsURL = driving_directions.getData()/> 
266                        <#else> 
267                            <#if centerAddress != "" && centerCity != "" && centerState != "" && centerZipCode != "" > 
268                                <#assign googleMapsURL =  centerAddress + "," +  centerCity + "," +  centerState + "," +  centerZipCode/> 
269                                <#assign googleMapsURL =  htmlUtil.escapeURL( googleMapsURL)/> 
270                                <#assign googleMapsURL = "http://maps.google.com?q=" +  googleMapsURL/> 
271                            </#if> 
272                        </#if> 
273 
274                        <#if googleMapsURL != ""> 
275                            <a 
276                                class="btn btn-secondary btn-icon--left" 
277                                href="${googleMapsURL}" 
278                                target="_blank" 
279
280                                <i class="ph-bold ph-traffic-sign"></i> 
281                                <@liferay.language key="com.grifols.d3.driving-directions"/> 
282                            </a> 
283                        </#if> 
284                    </div> 
285                </div> 
286            </div> 
287        </div> 
288 
289 
290        <div class="promotional-image aspect-ratio-bg-center aspect-ratio-bg-cover d3-xs-hide" title="${centerName}">&nbsp;</div> 
291        <div class="promotional-image aspect-ratio aspect-ratio-8-to-5 aspect-ratio-bg-center aspect-ratio-bg-cover d3-md-hide" title="${centerName}">&nbsp;</div> 
292    </div> 
293 
294    <div class="d3-component container"> 
295        <div class="row"> 
296            <div class="d3-col-xs-6 d3-col-md-6"> 
297               <#if showCompensationSection > 
298				   <#if centerDMS != ""> 
299						<#assign dcTextModel = ""/> 
300						<#if d3DonorCompensationLocalService.getDonorCompensationByDMS(centerDMS)?has_content> 
301							<#assign curDonorCompensation = d3DonorCompensationLocalService.getDonorCompensationByDMS(centerDMS)/> 
302							 
303							<#if curDonorCompensation?? && curDonorCompensation?has_content> 
304								<#if locale = "en_US"> 
305									<#assign dcTextModel = curDonorCompensation.compensationMessageEN/> 
306								<#elseif locale = "es_ES"> 
307									<#assign dcTextModel = curDonorCompensation.compensationMessageES/> 
308								</#if> 
309							</#if> 
310						</#if> 
311						 
312						 
313						<#if dcTextModel != ""> 
314							<div class="d3-description"> 
315								<h3><@liferay.language key='com.grifols.d3.new-donor-compensation' /></h3> 
316								<div class="donor-compensation-icons"> 
317									<#if donorCompensationImage??> 
318										<img 
319											alt="Donor Compensation Icon" 
320											src="${donorCompensationImage}" 
321										/> 
322									</#if> 
323									<p class="text-bold">${dcTextModel}*</p> 
324								</div> 
325							</div> 
326						</#if> 
327						 
328						<#if referFriendTitle??> 
329							<div class="donor-compensation-icons"> 
330								<#if referAFriendImage??> 
331									<img 
332										alt="Refer a Friend Icon" 
333										src="${referAFriendImage}" 
334									/> 
335								</#if> 
336								 
337								<#assign refer_friend_url = locale_prefix + "/refer-a-friend" /> 
338								<a href="${refer_friend_url}">${referFriendTitle}</a> 
339							</div> 
340						</#if> 
341					</#if> 
342				</#if> 
343                 
344                <#if dms.getData()?has_content > 
345                    <#if  themeDisplay.getPortletDisplay().getPortletName() == "preview" > 
346                        <#assign centerOperationHours =  plasmaUtils.getHoursToShow( locale,  dms.getData(), true)/> 
347                    <#else> 
348                        <#assign centerOperationHours =  plasmaUtils.getHoursToShow( locale,  dms.getData(), false)/> 
349                    </#if> 
350                         
351                    <#if centerOperationHours != "" > 
352						<#assign hoursMicrodata = plasmaUtils.getHoursMicrodata(dms.getData()) />						 
353                        <div class="d3-description"> 
354                            <h3><@liferay.language key='com.grifols.plasma.hours' /></h3> 
355                            ${centerOperationHours} 
356                        </div> 
357                    </#if> 
358                </#if> 
359            </div> 
360            <div class="d3-col-xs-6 d3-col-md-6"> 
361                <#if (covid_convalescent?? && covid_convalescent.getData()?? && covid_convalescent.getData() == 'true') 
362                    || (childcare?? && childcare.getData()?? && childcare.getData() == 'true') 
363                    || (appointments?? && appointments.getData()?? && appointments.getData() == 'true') 
364                    || (ownbuilding?? && ownbuilding.getData()?? && ownbuilding.getData() == 'true') 
365                    || (inshoppingcenter?? && inshoppingcenter.getData()?? && inshoppingcenter.getData() == 'true') 
366                    || (bankofamerica?? && bankofamerica.getData()?? && bankofamerica.getData() == 'true') 
367                    || (paysign?? && paysign.getData()?? && paysign.getData() == 'true') 
368                    || (donorhub?? && donorhub.getData()?? && donorhub.getData() == 'true') 
369
370                     
371                    <div class="d3-description"> 
372                        <#if centerAmmenitiesTitle??> 
373                            <h3>${centerAmmenitiesTitle}</h3> 
374                        </#if> 
375                         
376                        <div class="center-ammenities-container"> 
377                            <#list 0..<centerAmmenitiesList.length() as center_ammenities_index> 
378                                <#if centerAmmenitiesList.getJSONObject(center_ammenities_index)??> 
379                                    <#assign cur_ammenity = centerAmmenitiesList.getJSONObject(center_ammenities_index)> 
380                                    <#if cur_ammenity.getString("id_name")?? && cur_ammenity.getString("id_name")?has_content> 
381                                        <#assign cur_ammenity_id_name = cur_ammenity.getString("id_name")> 
382 
383                                        <#if (cur_ammenity_id_name = 'covid-convalescent' && covid_convalescent?? && covid_convalescent.getData()?? && covid_convalescent.getData() == 'true') 
384                                            || (cur_ammenity_id_name = 'childcare' && childcare?? && childcare.getData()?? && childcare.getData() == 'true') 
385                                            || (cur_ammenity_id_name = 'appointments' && appointments?? && appointments.getData()?? && appointments.getData() == 'true') 
386                                            || (cur_ammenity_id_name = 'own-building' && ownbuilding?? && ownbuilding.getData()?? && ownbuilding.getData() == 'true') 
387                                            || (cur_ammenity_id_name = 'in-shopping-center' && inshoppingcenter?? && inshoppingcenter.getData()?? && inshoppingcenter.getData() == 'true') 
388                                            || (cur_ammenity_id_name = 'bank-of-america' && bankofamerica?? && bankofamerica.getData()?? && bankofamerica.getData() == 'true') 
389                                            || (cur_ammenity_id_name = 'paysign' && paysign?? && paysign.getData()?? && paysign.getData() == 'true') 
390                                            || (cur_ammenity_id_name = 'donorhub' && donorhub?? && donorhub.getData()?? && donorhub.getData() == 'true') 
391
392                                            <div class="specialty-programs-icons"> 
393                                                <#assign cur_ammenity_name = cur_ammenity.getString("name")> 
394                                         
395                                                <#if cur_ammenity.getString("icon")?? && cur_ammenity.getString("icon")?has_content && cur_ammenity_id_name != 'donorhub'> 
396                                                    <#assign card_icon = getPhosphorIcon(cur_ammenity.getString("icon")) /> 
397                                                    <div class="circle"> 
398                                                        <i class="d3-icon ${card_icon}"></i> 
399                                                    </div> 
400                                                </#if> 
401                                                 
402                                                <#if cur_ammenity_id_name = 'donorhub'> 
403                                                    <img 
404                                                            alt="${cur_ammenity_id_name}" 
405                                                            src="https://www.grifolsplasma.com/documents/1088990/1092005/donorhub-avatar.png/c2cbf871-138e-495c-bda4-24ba8852036a?t=1719494894109" 
406                                                      /> 
407													 
408                                                     
409                                                    <#assign donorhubURL =  "https://www.grifolsplasmadonorhub.com" /> 
410                                                    <a   
411                                                        href="${donorhubURL}" target="_blank" 
412
413                                                        ${cur_ammenity_name} 
414                                                    </a> 
415                                                <#else> 
416                                                    <p>${cur_ammenity_name}</p> 
417                                                </#if> 
418                                                 
419                                            </div> 
420                                        </#if> 
421                                    </#if> 
422                                </#if> 
423                            </#list> 
424 
425                            <#if (antidprogram?? && antidprogram.getData()?? && antidprogram.getData() == 'true') 
426                                || (rabiesprogram?? && rabiesprogram.getData()?? && rabiesprogram.getData() == 'true') 
427                                || (tetanusprogram?? && tetanusprogram.getData()?? && tetanusprogram.getData() == 'true') 
428                                || (hepatitisbprogram?? && hepatitisbprogram.getData()?? && hepatitisbprogram.getData() == 'true') 
429                                || (rsv_program?? && rsv_program.getData()?? && rsv_program.getData() == 'true') 
430                                || (male_ab_program?? && male_ab_program.getData()?? && male_ab_program.getData() == 'true') 
431
432                                <#list 0..<specialtyProgramsList.length() as specialty_programs_index> 
433                                    <#if specialtyProgramsList.getJSONObject(specialty_programs_index)??> 
434                                        <#assign cur_specialty_program = specialtyProgramsList.getJSONObject(specialty_programs_index)> 
435                                        <#if cur_specialty_program.getString("id_name")?? && cur_specialty_program.getString("id_name")?has_content> 
436                                            <#assign cur_specialty_program_id_name = cur_specialty_program.getString("id_name")> 
437 
438                                            <#if (cur_specialty_program_id_name == 'anti-d-program' && antidprogram?? && antidprogram.getData()?? && antidprogram.getData() == 'true') 
439                                                || (cur_specialty_program_id_name == 'anti-rabies-program' && rabiesprogram?? && rabiesprogram.getData()?? && rabiesprogram.getData() == 'true') 
440                                                || (cur_specialty_program_id_name == 'anti-tetanus-program' && tetanusprogram?? && tetanusprogram.getData()?? && tetanusprogram.getData() == 'true') 
441                                                || (cur_specialty_program_id_name == 'anti-hepatitis-B-program' && hepatitisbprogram?? && hepatitisbprogram.getData()?? && hepatitisbprogram.getData() == 'true') 
442                                                || (cur_specialty_program_id_name == 'anti-rsv-program' && rsv_program?? && rsv_program.getData()?? && rsv_program.getData() == 'true') 
443                                                || (cur_specialty_program_id_name == 'male-ab-program' && male_ab_program?? && male_ab_program.getData()?? && male_ab_program.getData() == 'true') 
444
445                                                <div class="specialty-programs-icons"> 
446                                                    <#assign cur_specialty_program_id = cur_specialty_program.getString("id_name")> 
447													<#assign cur_specialty_program_name = cur_specialty_program.getString("name")> 
448                                             
449                                                    <#if cur_specialty_program.getString("icon")?? && cur_specialty_program.getString("icon")?has_content> 
450                                                        <#assign cur_specialty_program_icon = cur_specialty_program.getString("icon")> 
451                                                        <img 
452                                                            alt="${cur_specialty_program_name}" 
453                                                            src="${cur_specialty_program_icon}" 
454                                                        /> 
455                                                    </#if> 
456													 
457													<#assign cur_specialty_url = locale_prefix + "/experienced-donor/specialty-plasma-programs" /> 
458													 
459													<#if cur_specialty_program_id = "anti-d-program" || cur_specialty_program_id = "anti-hepatitis-B-program" > 
460														<#assign cur_specialty_url = cur_specialty_url + "#anti-B-D"> 
461													<#elseif cur_specialty_program_id = "anti-tetanus-program" || cur_specialty_program_id = "anti-rabies-program" > 
462														<#assign cur_specialty_url = cur_specialty_url + "#anti-tetanus-rabies"> 
463													<#elseif cur_specialty_program_id = "anti-rsv-program" || cur_specialty_program_id = "male-ab-program" > 
464														<#assign cur_specialty_url = cur_specialty_url + "#anti-rsv-ab"> 
465													</#if> 
466													 
467													<a href="${cur_specialty_url}">${cur_specialty_program_name}</a> 
468                                                </div> 
469                                            </#if> 
470                                        </#if> 
471                                    </#if> 
472                                </#list> 
473                            </#if> 
474                        </div> 
475                    </div> 
476                </#if> 
477                 
478                <#if donationRequirementsList??> 
479                    <div class="d3-description"> 
480                        <#if donationRequirementsTitle??> 
481                            <h3>${donationRequirementsTitle}</h3> 
482                        </#if> 
483 
484                        <p> 
485                            <#list 0..<donationRequirementsList.length() as donation_requirements_index> 
486                                <#if donationRequirementsList.getJSONObject(donation_requirements_index)??> 
487                                    <#assign cur_requirement = donationRequirementsList.getJSONObject(donation_requirements_index)> 
488                                    <#if cur_requirement.getString("description")?? && cur_requirement.getString("description")?has_content> 
489                                        <strong>${donation_requirements_index + 1}. </strong>${cur_requirement.getString("description")}<br/> 
490                                    </#if> 
491                                </#if> 
492                            </#list> 
493                        </p> 
494                    </div> 
495                </#if> 
496            </div> 
497        </div> 
498    </div> 
499 
500    <#if stepsToDonateList??> 
501		<div class="d3-info-card row-4 pt-0"> 
502			<div class="container"> 
503				<#if stepsToDonateTitle??> 
504					<div class="d3-row d3-introduction text-center text-content"> 
505						<h2>${stepsToDonateTitle}</h2> 
506					</div> 
507				</#if> 
508				 
509				<div class="d3-content-grid" style="justify-content: center; text-align: center;"> 
510					<#list 0..<stepsToDonateList.length() as steps_to_donate_index> 
511						<#if stepsToDonateList.getJSONObject(steps_to_donate_index)??> 
512							<#assign cur_step = stepsToDonateList.getJSONObject(steps_to_donate_index)> 
513							<#if (cur_step.getString("description")?? && cur_step.getString("description")?has_content)  
514								|| cur_step.getString("image")?? && cur_step.getString("image")?has_content> 
515								<div class="d3-col-xs-6 d3-col-sm-3 d3-col-md-2"> 
516									<div class="d3-card-ghost item-1"> 
517										<div class="card-content"> 
518											<#if cur_step.getString("image")?? && cur_step.getString("image")?has_content> 
519												<img 
520													src="${cur_step.getString("image")}" 
521												/> 
522											</#if> 
523											 
524											<#if cur_step.getString("description")?? && cur_step.getString("description")?has_content> 
525												<strong class="text-lg"> 
526													${steps_to_donate_index + 1}. ${cur_step.getString("description")} 
527												</strong> 
528											</#if> 
529										</div> 
530									</div> 
531								</div>  
532							</#if> 
533						</#if> 
534					</#list> 
535				</div> 
536			</div> 
537		</div> 
538    </#if> 
539 
540 
541    <#if centerInformationDescription??> 
542        <div class="d3-text pt-0"> 
543            <div class="container"> 
544                <div class="d3-col-xs-6 d3-col-md-10 d3-offset-md-1"> 
545                    <#if centerInformationTitle??> 
546                        <h3>${centerInformationTitle}</h3> 
547                    </#if> 
548                    <div>${centerInformationDescription 
549                            ?replace("CENTER_COMPANY","${centerName}") 
550                            ?replace("CENTER_CITY","${centerCity}") 
551                            ?replace("CENTER_STATE","${centerState}")}</div> 
552                </div> 
553            </div> 
554        </div> 
555    </#if> 
556	 
557	<#if showCompensationSection > 
558		<#if legalDisclaimer?? && legalDisclaimer?has_content> 
559			<div class="d3-text pt-0"> 
560				<div class="container"> 
561					<div class="d3-col-xs-6 d3-col-md-8 d3-offset-md-2 d3-roffset-md-2"> 
562						<div class="d3-description text-center text-caption"> 
563							${legalDisclaimer} 
564						</div> 
565					</div> 
566				</div> 
567			</div> 
568		</#if> 
569	</#if> 
570</div> 
571 
572<style> 
573    .journal-content-article .promotional-image { 
574      background-image: url("${centerImage}"); 
575
576 
577    .d3-description .hours { 
578        display: flex; 
579
580 
581    .d3-description .hours .day-name{ 
582        width: 50%; 
583
584 
585    .center-ammenities-container { 
586        display: flex; 
587        flex-wrap: wrap; 
588
589 
590    .specialty-programs-icons { 
591        display: flex; 
592        flex-direction: row; 
593        align-items: center; 
594        gap: 16px; 
595        padding-bottom: 16px; 
596        width: 100%; 
597
598 
599    .donor-compensation-icons img { 
600        height: 40px; 
601
602	 
603	.donor-compensation-icons { 
604        display: flex; 
605        flex-direction: row; 
606        align-items: center; 
607        gap: 16px; 
608        padding-bottom: 16px; 
609        width: 100%; 
610
611 
612    .specialty-programs-icons img { 
613        height: 32px; 
614
615 
616    .specialty-programs-icons .circle { 
617        display: flex; 
618        align-items: center; 
619        background-color: #d4e4f4; 
620        color: #002969; 
621        border-radius: 100%; 
622        justify-content: center; 
623        width: 32px; 
624        height: 32px; 
625
626 
627    .specialty-programs-icons .circle .d3-icon { 
628        font-size: 16px; 
629
630 
631    @media screen and ( min-width: 600px ) 
632
633    .specialty-programs-icons { 
634        width: 50%; 
635
636	 
637 
638</style> 
639 
640<script type="application/ld+json"> 
641    <#assign portalURL=themeDisplay.getPortalURL()> 
642     
643
644        "@context": "https://schema.org", 
645        "@type": "LocalBusiness", 
646        "logo": "${portalURL}${centerLogo}", 
647        "name": "${centerName}", 
648        "photo": "${portalURL}${centerImage}", 
649        "address": { 
650            "@type": "PostalAddress", 
651            "addressLocality": "${centerCity}", 
652            "addressRegion": "${centerState}", 
653            "postalCode": "${centerZipCode}", 
654            "streetAddress": "${address.getData()}", 
655            "addressCountry": "US" 
656        }, 
657        "telephone": "${centerPhone}", 
658        "description": "${centerInformationDescription?json_string}", 
659        "hasMap": "${googleMapsURL}", 
660 
661        <#if x_coordinate?? && x_coordinate.getData()?has_content && y_coordinate??  
662            && y_coordinate.getData()?has_content> 
663            "geo": { 
664                "@type": "GeoCoordinates", 
665                "latitude": "${x_coordinate.getData()}", 
666                "longitude": "${y_coordinate.getData()}" 
667            }, 
668        </#if> 
669		<#if hoursMicrodata != ""> 
670			${hoursMicrodata?remove_beginning("{")?remove_ending("}")} 
671		</#if> 
672
673</script> 

Centros cercanos