{"id":593,"date":"2020-11-21T16:32:59","date_gmt":"2020-11-21T21:32:59","guid":{"rendered":"https:\/\/giving.georgetown.edu\/give\/?page_id=593"},"modified":"2021-07-14T16:29:58","modified_gmt":"2021-07-14T20:29:58","slug":"yearend2020","status":"publish","type":"page","link":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/","title":{"rendered":"2020.12 YE_Donlon_Landing Page"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/hero-2c21a971-3f33-44b2-9f0f-02aed3e8a655.jpg\" alt=\"\"\/><\/figure>\n\n\n\n    \n    \n\n\n\n<div\n        class=\"f--field f--oa-hidden-title \"\n                        >\n\n    \n      <h1 class=\"visually-hidden\">\n    Make a Gift to Georgetown Lombardi Comprehensive Cancer Center\n  <\/h1>\n\n<\/div><!-- f--field f--oa-hidden-title -->\n\n\n\n  \n    \n\n<section\n   id=\"give\"  class=\"cc--component-container cc--oa-pre-form appearance-pantone199 \"\n\n   aria-label=\"Giving form\"\n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-pre-form\"\n        >\n\n          <div class=\"hero-image-container\">\n    <div class=\"hero-image-wrapper\">\n      <div class=\"hero-image-default\">\n            \n    \n\n\n\n<div\n        class=\"f--field f--hero-image \"\n                        >\n\n    \n          <img decoding=\"async\" class=\"hero-img\" src=\"\" alt=\"\" \/>\n  \n<\/div><!-- f--field f--hero-image -->\n                  <img decoding=\"async\" class=\"hero-image-default-overlay\"\n            style=\"top: 40%\"\n            src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/mid-dd40fc62-8c1f-4b85-a4cc-de90af3ab75b.jpg\"\n            alt=\"\" \/>\n              <\/div>\n\n              <div class=\"default-only\"><\/div>\n          <\/div>\n  <\/div>\n\n  <div class=\"gravity-container\">\n    <script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_10' style='display:none'><form method='post' enctype='multipart\/form-data'  id='gform_10'  action='\/give\/wp-json\/wp\/v2\/pages\/593' data-formid='10' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_10' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_10_1\" class=\"gfield gfield--type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h4 class=\"title\">Your Support Helps Save Lives<\/h4><\/li><li id=\"field_10_5\" class=\"gfield gfield--type-FieldsetBegin donation-fieldset field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_5'>Amount Options<\/label><\/li><li id=\"field_10_2\" class=\"gfield gfield--type-radio gfield--type-choice dollar-amount-radio-buttons gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Amount<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_10_2'>\n\t\t\t<li class='gchoice gchoice_10_2_0'>\n\t\t\t\t<input name='input_2' type='radio' value='500'  id='choice_10_2_0'    \/>\n\t\t\t\t<label for='choice_10_2_0' id='label_10_2_0' class='gform-field-label gform-field-label--type-inline'>$500<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_10_2_1'>\n\t\t\t\t<input name='input_2' type='radio' value='250'  id='choice_10_2_1'    \/>\n\t\t\t\t<label for='choice_10_2_1' id='label_10_2_1' class='gform-field-label gform-field-label--type-inline'>$250<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_10_2_2'>\n\t\t\t\t<input name='input_2' type='radio' value='100' checked='checked' id='choice_10_2_2'    \/>\n\t\t\t\t<label for='choice_10_2_2' id='label_10_2_2' class='gform-field-label gform-field-label--type-inline'>$100<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_10_2_3'>\n\t\t\t\t<input name='input_2' type='radio' value='50'  id='choice_10_2_3'    \/>\n\t\t\t\t<label for='choice_10_2_3' id='label_10_2_3' class='gform-field-label gform-field-label--type-inline'>$50<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_10_2_4'>\n\t\t\t\t<input name='input_2' type='radio' value='25'  id='choice_10_2_4'    \/>\n\t\t\t\t<label for='choice_10_2_4' id='label_10_2_4' class='gform-field-label gform-field-label--type-inline'>$25<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_10_2_5'>\n\t\t\t\t<input name='input_2' type='radio' value='gf_other_choice'  id='choice_10_2_5'   onfocus=\"jQuery(this).next('input').focus();\" \/>\n\t\t\t\t<input class='small' id='input_10_2_other' name='input_2_other' type='text' value='Other' aria-label='Other' onfocus='jQuery(this).prev(\"input\")[0].click(); if(jQuery(this).val() == \"Other\") { jQuery(this).val(\"\"); }' onblur='if(jQuery(this).val().replace(\" \", \"\") == \"\") { jQuery(this).val(\"Other\"); }'   \/>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_10_7\" class=\"gfield gfield--type-FieldsetEnd field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_7'>Untitled<\/label><\/li><li id=\"field_10_10\" class=\"gfield gfield--type-select hero-image-trigger gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_10'>Your Gift Will Support<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_10' id='input_10_10' class='medium gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='178' >Lombardi Comprehensive Cancer Center<\/option><option value='144' >Other<\/option><\/select><\/div><\/li><li id=\"field_10_9\" class=\"gfield gfield--type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_9'>Other Designation<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_9' id='input_10_9' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_10_4\" class=\"gfield gfield--type-hidden gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_4' id='input_10_4' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='ofc20h' \/><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_10' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Continue'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_10' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_10' id='gform_theme_10' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_10' id='gform_style_settings_10' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_10' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='10' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_10' value='WyJbXSIsIjhhNzk4MjY1NmFiNTU3M2JmYmNjZTQzY2IwMmY4ZGEwIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_10' id='gform_target_page_number_10' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_10' id='gform_source_page_number_10' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 10, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery('#gform_ajax_frame_10').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_10');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_10').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_10').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_10').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_10').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_10').val();gformInitSpinner( 10, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery(document).trigger('gform_page_loaded', [10, current_page]);window['gf_submitting_10'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_10').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [10]);window['gf_submitting_10'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_10').text());}else{jQuery('#gform_10').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"10\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_10\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_10\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_10\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 10, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\n\n  <\/div>\n\n    <\/div><!-- c--component c--oa-pre-form -->\n\n<\/section><!-- cc--component-container cc--oa-pre-form -->\n\n\n\n<link rel=\"stylesheet\" href=\"dist\/index.css\">\n<section id=\"de615db9-fd6e-49a6-84ae-1d545ef93640\" aria-label=\"Help save Lives\">\n  <div class=\"flex-container\" style=\"width:inherit;\">\n    <div class=\"flex-item\">\n      <img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/Icon-metro-calendar@2x.jpg\" alt=\"\" class=\"block-image\">\n      <div class=\"content\">\n        <div class=\"head\">\n          <h2 style=\"text-align: left\">Make a difference before Dec. 31!<\/h2>\n        <\/div>\n        <div class=\"body\">\n          <p>\n            Your tax-deductible, year-end contribution to Georgetown Lombardi\n            Comprehensive Cancer Center will be matched dollar for dollar, up to\n            $50,000. Every dollar will go directly to accelerate groundbreaking\n            cancer research that will lead to new discoveries, better\n            treatments, and cures.\n          <\/p>\n          <p>\n            The Matching Gift ends December 31. So, please <a href=\"#gform_wrapper_10\">give today<\/a> to make 2X\n            the impact for people fighting cancer this holiday season.\n          <\/p>\n        <\/div>\n      <\/div>\n    <\/div>\n\n    <div class=\"flex-item\">\n      <img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/Icon-awesome-microscope@2x.jpg\" alt=\"\" class=\"block-image\">\n      <div class=\"content2\">\n        <div class=\"head\">\n          <h2>Accelerate breakthroughs.<\/h2>\n        <\/div>\n        <div class=\"body\">\n          <p>\n            Breakthroughs, such as the new Retzius-sparing robotic prostatectomy for men with prostate cancer.\n          <\/p>\n\n          <p>\n            This advanced technique removes the prostate by way of an alternate route, preserving attachments to the\n            bladder and urethra that may play a key role in continence preservation and improved quality of life.\n          <\/p>\n          <p>\n            \u201cThe big advantage is that these patients become continent much earlier, sometimes immediately,\u201d says\n            Georgetown Lombardi member Dr. Keith Kowalczyk, director, Urologic Oncology at MedStar Georgetown University\n            Hospital. \u201cI can really confidently tell my patients now that this should not be a problem. They\u2019ve just\n            been doing astonishingly well.\u201d\n          <\/p>\n        <\/div>\n      <\/div>\n    <\/div>\n    <div class=\"flex-item\">\n      <img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/Icon-open-people@2x.jpg\" alt=\"\" class=\"block-image\">\n      <div class=\"content3\">\n        <div class=\"head\">\n          <h2>Care for the whole person.<\/h2>\n        <\/div>\n        <div class=\"body\">\n          <p>\n            Guided by the principle of <em>cura personalis<\/em> &#8211; care for the whole person, Georgetown Lombardi links scientific\n            discovery, expert and compassionate patient care, and quality education and partnership with the community.\n          <\/p>\n\n          <p>\n            \u201cYou go through all sorts of mental gymnastics when you\u2019re confronted with cancer. My main concern was the\n            ability to get back to normal. I didn\u2019t really have any major issues. And I can vouch for everyone here \u2014\n            everyone has always demonstrated care for the whole person. It is evident in my encounter and my family\u2019s\n            encounter,\u201d says Sean Hawkins, prostate cancer patient.\n          <\/p>\n\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/section>\n\n<section id=\"c383f3ff-e003-4eea-8c36-5d24e267f532\">\n  <div class=\"contain\">\n    <div class=\"image\">\n      <img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/10\/c383f3ff-e003-4eea-8c36-5d24e267f532.png\" class=\"img-responsive\">\n    <\/div>\n    <div class=\"body\">\n      If you itemize, the CARES Act may allow you to receive a federal income\n      tax deduction for cash charitable contributions of up to 100% of your\n      adjusted gross income for gifts made this calendar year.\n      <a href=\"#gform_wrapper_10\">Please make your most generous gift today<\/a>.\n      Thank&nbsp;you!<br>\n      #EndingCancerStartsHere\n    <\/div>\n  <\/div>\n<\/section>\n\n\n\n  \n    \n\n<section\n   id=\"about-lombardi\"  class=\"cc--component-container cc--oa-two-column appearance-light-gray \"\n\n   aria-label=\"About Georgetown Lombardi\"\n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-two-column\"\n        >\n\n          <div class=\"content\">\n    <div class=\"left column\">\n              <h2 class=\"heading left-heading\">\n          About Georgetown Lombardi\n        <\/h2>\n            <p>Georgetown Lombardi Comprehensive Cancer Center seeks to prevent, treat, and cure cancers by linking scientific discovery, expert and compassionate patient care, quality education, and partnership with the community \u2014 guided by the principle of <em>cura personalis<\/em>, \u201ccare for the whole person.\u201d Georgetown Lombardi is the research engine driving clinical cancer research at MedStar Health in the Washington D.C. metro area. #EndingCancerStartsHere<\/p>\n\n    <\/div>\n  <\/div>\n\n  <div class=\"content\">\n    <div class=\"right column\">\n              <h2 class=\"heading right-heading\">\n          Additional Ways to Give\n        <\/h2>\n            <ul>\n<li>Make a gift by phone at (202) 687-1690.<\/li>\n<li>If you have questions about giving, email us at <a href=\"mailto:giving@georgetown.edu\">giving@georgetown.edu<\/a>.<\/li>\n<li>To learn about the many creative ways to support Georgetown Lombardi, visit our <a href=\"https:\/\/giving.georgetown.edu\/how-to-give\/\" target=\"_blank\" rel=\"noopener\">How to Give webpage<\/a>.<\/li>\n<\/ul>\n\n    <\/div>\n  <\/div>\n\n    <\/div><!-- c--component c--oa-two-column -->\n\n<\/section><!-- cc--component-container cc--oa-two-column -->\n\n\n\n<style>\n\n@media screen and (min-width: 800px) {\n  .hero-image-default-overlay {\n    width: auto !important;\n  }\n}\n@media screen and (min-width: 800px) {\n  .hero-img {\n    width: 100% !important;\n  }\n}\n.img-container {\n  width: 50%;\n  max-width: 374px;\n}\nimg {\n  max-width: 100%;\n}\n.myCopy {\n  display: block;\n  overflow: auto;\n}\n.block-image {\n  display: block;\n  width: auto;\n  margin-left: auto;\n  margin-right: auto;\n}\n#content .cc--oa-pre-form.appearance-pantone199 .gravity-container input[type=\"submit\"]:hover {\n  background-color: #5EA744;\n  border-color: #5EA744;\n}\n#content .cc--oa-pre-form.appearance-pantone199 .gravity-container input[type=\"radio\"]:checked + label {\n  background-color: #5EA744;\n}\n#content .cc--oa-pre-form.appearance-pantone199 .gravity-container ul.gfield_radio input[type=\"radio\"] + input:hover {\n  background-color: #5EA744;\n}\nhtml[data-whatintent='mouse'] .cc--oa-pre-form.appearance-pantone199 .c--oa-pre-form .gravity-container ul.gfield_radio input[type=\"radio\"] + label:hover {\n  background-color: #5EA744;\n}\n.hero-image-default-overlay {\n  top: -25px !important;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 {\n  clear: both;\n  max-width: 1920px;\n  width: 100%;\n  margin: auto;\n  border-top: 19px #63666A solid;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .makeagift {\n  color: white;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 h2 {\n  margin-bottom: 0;\n  margin-top: 0px;\n  padding-top: 10px;\n  font-family: Georgia, Times, \"Times New Roman\", serif;\n  font-size: 36px;\n  padding: 0 0.5em;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .head {\n  padding: 1em 1.5em 0.5em 1.5em;\n  min-height: 80px;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item {\n  width: 100%;\n  min-height: 745px;\n}\n@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {\n  #de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item {\n    min-height: 1366px ;\n  }\n}\n@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {\n  #de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item {\n    min-height: 840px ;\n  }\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item p {\n  color: #041E42;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item .body {\n  padding: 1em 1.5em;\n  font-size: 20px;\n}\n@media screen and (min-width: 400px) {\n  #de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item {\n    width: 33%;\n    float: left;\n  }\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item h2 {\n  color: #041E42;\n  text-align: center;\n  font-weight: 100;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item:nth-of-type(1) h2 {\n  color: #041E42;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item:nth-of-type(1) p {\n  color: #041E42;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item:nth-of-type(2) h2 {\n  color: #041E42;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .flex-item:nth-of-type(3) h2 {\n  color: #041E42;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 p {\n  color: #041E42;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .heading {\n  color: #041E42;\n  font-style: italic;\n  text-align: center;\n  font-family: Georgia, 'Times New Roman', Times, serif;\n}\n@media screen and (min-width: 600px) {\n  #de615db9-fd6e-49a6-84ae-1d545ef93640 .heading {\n    font-size: 2.5em;\n  }\n}\n@media screen and (min-width: 600px) {\n  #de615db9-fd6e-49a6-84ae-1d545ef93640 .right-heading {\n    margin: 1em 0 2em 0;\n  }\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 .column {\n  width: 84%;\n}\n#de615db9-fd6e-49a6-84ae-1d545ef93640 a {\n  color: #041E42;\n}\n#c383f3ff-e003-4eea-8c36-5d24e267f532 {\n  margin: 1em;\n  clear: both;\n  min-height: 150px;\n  width: auto;\n}\n#c383f3ff-e003-4eea-8c36-5d24e267f532 .body {\n  color: #fff !important;\n}\n#c383f3ff-e003-4eea-8c36-5d24e267f532 a {\n  color: #fff !important;\n}\n@media screen and (min-width: 600px) {\n  #c383f3ff-e003-4eea-8c36-5d24e267f532 {\n    margin: 4em auto;\n  }\n}\n@media screen and (min-width: 600px) {\n  #c383f3ff-e003-4eea-8c36-5d24e267f532 {\n    width: 80%;\n  }\n}\n#c383f3ff-e003-4eea-8c36-5d24e267f532 .contain {\n  background-color: #017c9b;\n  border-radius: 10px;\n  border: 1px solid #707070;\n  min-height: 155px;\n  max-width: 1200px;\n}\n@media screen and (min-width: 600px) {\n  #c383f3ff-e003-4eea-8c36-5d24e267f532 .contain {\n    width: 80%;\n    margin: auto;\n    padding: 3em;\n  }\n}\n#c383f3ff-e003-4eea-8c36-5d24e267f532 img {\n  width: 100%;\n  margin-left: 2em;\n}\n@media screen and (min-width: 600px) {\n  #c383f3ff-e003-4eea-8c36-5d24e267f532 img {\n    width: auto;\n    margin-left: auto;\n  }\n}\n#c383f3ff-e003-4eea-8c36-5d24e267f532 .image {\n  width: 100%;\n}\n@media screen and (min-width: 700px) {\n  #c383f3ff-e003-4eea-8c36-5d24e267f532 .image {\n    float: left;\n    width: 17%;\n    margin-right: 3.5em;\n    min-width: 140px;\n  }\n}\n#c383f3ff-e003-4eea-8c36-5d24e267f532 .body {\n  overflow: auto;\n  color: #041E42;\n  font-size: 1.25em;\n  text-align: center;\n  padding: 1em;\n}\n#c383f3ff-e003-4eea-8c36-5d24e267f532 .body a {\n  color: #041E42;\n}\n@media screen and (min-width: 600px) {\n  #c383f3ff-e003-4eea-8c36-5d24e267f532 .body {\n    text-align: left;\n    padding: 0;\n  }\n}\n.flex-container {\n  padding-top: 4em;\n}\n@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {\n  #c383f3ff-e003-4eea-8c36-5d24e267f532 .image {\n    width: 50%;\n  }\n}\n@media only screen and (min-device-width: 600px) {\n  .flex-container {\n    display: -ms-inline-flexbox;\n    display: -webkit-inline-flex;\n    display: inline-flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    -webkit-flex-wrap: nowrap;\n    -ms-flex-wrap: nowrap;\n    flex-wrap: nowrap;\n    -webkit-justify-content: center;\n    -ms-flex-pack: start;\n    justify-content: center;\n    -webkit-align-content: space-around;\n    -ms-flex-line-pack: distribute;\n    align-content: space-around;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start;\n    padding-top: 0;\n  }\n  .flex-item:nth-child(1) {\n    -webkit-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n    -webkit-flex: 0 1 auto;\n    -ms-flex: 0 1 auto;\n    flex: 0 1 auto;\n    -webkit-align-self: auto;\n    -ms-flex-item-align: auto;\n    align-self: auto;\n  }\n  .flex-item:nth-child(2) {\n    -webkit-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n    -webkit-flex: 0 1 auto;\n    -ms-flex: 0 1 auto;\n    flex: 0 1 auto;\n    -webkit-align-self: auto;\n    -ms-flex-item-align: auto;\n    align-self: auto;\n  }\n  .flex-item:nth-child(3) {\n    -webkit-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n    -webkit-flex: 0 1 auto;\n    -ms-flex: 0 1 auto;\n    flex: 0 1 auto;\n    -webkit-align-self: auto;\n    -ms-flex-item-align: auto;\n    align-self: auto;\n  }\n  .flex-item {\n    margin: 50px;\n    margin-left: 30px;\n    margin-right: 30px;\n    border: 1px solid #707070;\n    padding-top: 2em;\n  }\n  .flex-item .content,\n  .flex-item .content2,\n  .flex-item .content3 {\n    margin-top: 1em;\n  }\n}\n@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {\n  .flex-item .content,\n  .flex-item .content2,\n  .flex-item .content3 {\n    min-height: 840px ;\n  }\n}\n.flex-item .content a,\n.flex-item .content2 a,\n.flex-item .content3 a {\n \n}\n.body {\n  padding: 1em 4.5em;\n}\nh2 {\n  padding: 0 65px;\n}\n.flex-item .content {\n  background-color: #fff;\n  border: none;\n}\n.flex-item .content2 {\n  background-color: #fff;\n}\n.flex-item .content3 {\n  background-color: #fff;\n}\n@media only screen and (min-device-width: 800px) {\n  .flex-item .content,\n  .flex-item .content2,\n  .flex-item .content3 {\n    min-height: 925px;\n  }\n}\n@media only screen and (min-device-width: 1100px) {\n  .flex-item .content,\n  .flex-item .content2,\n  .flex-item .content3 {\n    min-height: 1000px;\n  }\n}\n@media only screen and (min-device-width: 1400px) {\n  .flex-item .content,\n  .flex-item .content2,\n  .flex-item .content3 {\n    min-height: 825px;\n  }\n}\n@media only screen and (min-device-width: 1500px) {\n  .flex-item .content,\n  .flex-item .content2,\n  .flex-item .content3 {\n    min-height: 750px;\n  }\n}\n@media only screen and (min-device-width: 1913px) {\n  .flex-item .content,\n  .flex-item .content2,\n  .flex-item .content3 {\n    min-height: 600px;\n  }\n}\n\n<\/style>\n\n<script>\njQuery('#gform_10 .title').html('<img decoding=\"async\" src=\"https:\/\/i.countdownmail.com\/rn5qd.gif\" style=\"width:100%!important;\" border=\"0\" alt=\"Countdown\"\/><img decoding=\"async\" class=\"head-image\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/upper-dd40fc62-8c1f-4b85-a4cc-de90af3ab75b@2x.jpg\"\/>');\n<\/script>\n\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/moment.js\/2.27.0\/moment.min.js\" integrity=\"sha256-ZsWP0vT+akWmvEMkNYgZrPHKU9Ke8nYBPC3dqONp1mY=\" crossorigin=\"anonymous\"><\/script>\n\n<script class=\"dwi-components\" lid=\"dd40fc62-8c1f-4b85-a4cc-de90af3ab75b\" src=\"https:\/\/api.digitalwerksinnovations.com\/lightbox\/dd40fc62-8c1f-4b85-a4cc-de90af3ab75b.js?r=12367\">\n<\/script>\n<!-- Hotjar Tracking Code for https:\/\/giving.georgetown.edu -->\n<script>\n    (function(h,o,t,j,a,r){\n        h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};\n        h._hjSettings={hjid:2083439,hjsv:6};\n        a=o.getElementsByTagName('head')[0];\n        r=o.createElement('script');r.async=1;\n        r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;\n        a.appendChild(r);\n    })(window,document,'https:\/\/static.hotjar.com\/c\/hotjar-','.js?sv=');\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>Make a difference before Dec. 31! Your tax-deductible, year-end contribution to Georgetown Lombardi Comprehensive Cancer Center will be matched dollar for dollar, up to $50,000. Every dollar will go directly [&hellip;]<\/p>\n","protected":false},"author":885,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page_landing-page.php","meta":{"_acf_changed":false,"footnotes":"","_links_to":"","_links_to_target":""},"class_list":["post-593","page","type-page","status-publish","hentry"],"acf":{"mapbox_embed":false,"page_header_appearance":"header-default","contact_button_text":"","contact_email":"","share_link":"","chart_embed":false,"override_nav_logo":false},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Make a Gift to Georgetown Lombardi Comprehensive Cancer Center<\/title>\n<meta name=\"description\" content=\"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center\" \/>\n<meta property=\"og:description\" content=\"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/\" \/>\n<meta property=\"og:site_name\" content=\"Give\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-14T20:29:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/hero-2c21a971-3f33-44b2-9f0f-02aed3e8a655.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/\",\"name\":\"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center\",\"isPartOf\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/hero-2c21a971-3f33-44b2-9f0f-02aed3e8a655.jpg\",\"datePublished\":\"2020-11-21T21:32:59+00:00\",\"dateModified\":\"2021-07-14T20:29:58+00:00\",\"description\":\"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.\",\"breadcrumb\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#primaryimage\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/hero-2c21a971-3f33-44b2-9f0f-02aed3e8a655.jpg\",\"contentUrl\":\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/hero-2c21a971-3f33-44b2-9f0f-02aed3e8a655.jpg\",\"width\":1920,\"height\":500},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/my.giving.georgetown.edu\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"2020.12 YE_Donlon_Landing Page\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/#website\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/\",\"name\":\"Give\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/giving.georgetown.edu\/give\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center","description":"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/","og_locale":"en_US","og_type":"article","og_title":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center","og_description":"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.","og_url":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/","og_site_name":"Give","article_modified_time":"2021-07-14T20:29:58+00:00","og_image":[{"url":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/hero-2c21a971-3f33-44b2-9f0f-02aed3e8a655.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/","url":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/","name":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center","isPartOf":{"@id":"https:\/\/giving.georgetown.edu\/give\/#website"},"primaryImageOfPage":{"@id":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#primaryimage"},"image":{"@id":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#primaryimage"},"thumbnailUrl":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/hero-2c21a971-3f33-44b2-9f0f-02aed3e8a655.jpg","datePublished":"2020-11-21T21:32:59+00:00","dateModified":"2021-07-14T20:29:58+00:00","description":"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.","breadcrumb":{"@id":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/giving.georgetown.edu\/give\/yearend2020\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#primaryimage","url":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/hero-2c21a971-3f33-44b2-9f0f-02aed3e8a655.jpg","contentUrl":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/11\/hero-2c21a971-3f33-44b2-9f0f-02aed3e8a655.jpg","width":1920,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/giving.georgetown.edu\/give\/yearend2020\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/my.giving.georgetown.edu\/"},{"@type":"ListItem","position":2,"name":"2020.12 YE_Donlon_Landing Page"}]},{"@type":"WebSite","@id":"https:\/\/giving.georgetown.edu\/give\/#website","url":"https:\/\/giving.georgetown.edu\/give\/","name":"Give","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/giving.georgetown.edu\/give\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/593","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/users\/885"}],"replies":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/comments?post=593"}],"version-history":[{"count":72,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/593\/revisions"}],"predecessor-version":[{"id":1183,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/593\/revisions\/1183"}],"wp:attachment":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/media?parent=593"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}