{"id":4323,"date":"2026-07-27T13:58:25","date_gmt":"2026-07-27T17:58:25","guid":{"rendered":"https:\/\/giving.georgetown.edu\/give\/?page_id=4323"},"modified":"2026-08-12T14:02:50","modified_gmt":"2026-08-12T18:02:50","slug":"lccc-template-page","status":"publish","type":"page","link":"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/","title":{"rendered":"LCCC Template page"},"content":{"rendered":"\n  \n    \n\n<section\n   id=\"give\"  class=\"cc--component-container cc--oa-pre-form appearance-georgetown-blue \"\n\n  \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=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2026\/07\/Group-39.png\" alt=\"\" \/>\n  \n<\/div><!-- f--field f--hero-image -->\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_70' ><form method='post' enctype='multipart\/form-data'  id='gform_70'  action='\/give\/wp-json\/wp\/v2\/pages\/4323' data-formid='70' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_70' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_70_5\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_70_5'>Company<\/label><div class='ginput_container'><input name='input_5' id='input_70_5' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_70_5'>This field is for validation purposes and should be left unchanged.<\/div><\/li><li id=\"field_70_1\" class=\"gfield gfield--type-html gfield--input-type-html form-1 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\">Choose Your Impact<\/h4>\n\n<em>Select your gift amount below and the area most meaningful to you. Every gift makes a difference.<\/em>\n<\/li><li id=\"field_70_2\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio dollar-amount-radio-buttons field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Amount<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_70_2'>\n\t\t\t<li class='gchoice gchoice_70_2_0'>\n\t\t\t\t<input name='input_2' type='radio' value='500'  id='choice_70_2_0'    \/>\n\t\t\t\t<label for='choice_70_2_0' id='label_70_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_70_2_1'>\n\t\t\t\t<input name='input_2' type='radio' value='250'  id='choice_70_2_1'    \/>\n\t\t\t\t<label for='choice_70_2_1' id='label_70_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_70_2_2'>\n\t\t\t\t<input name='input_2' type='radio' value='100'  id='choice_70_2_2'    \/>\n\t\t\t\t<label for='choice_70_2_2' id='label_70_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_70_2_3'>\n\t\t\t\t<input name='input_2' type='radio' value='25'  id='choice_70_2_3'    \/>\n\t\t\t\t<label for='choice_70_2_3' id='label_70_2_3' class='gform-field-label gform-field-label--type-inline'>$25<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_70_2_4'>\n\t\t\t\t<input name='input_2' type='radio' value='17.89'  id='choice_70_2_4'    \/>\n\t\t\t\t<label for='choice_70_2_4' id='label_70_2_4' class='gform-field-label gform-field-label--type-inline'>$17.89<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_70_2_5'>\n\t\t\t\t<input name='input_2' type='radio' value='gf_other_choice'  id='choice_70_2_5'   onfocus=\"jQuery(this).next('input').focus();\" \/>\n\t\t\t\t<input class='small' id='input_70_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_70_3\" class=\"gfield gfield--type-select gfield--input-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_70_3'>Giving Opportunities<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_3' id='input_70_3' class='medium gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' selected='selected' class='gf_placeholder'>Select<\/option><option value='10' >Baseball (Men\u2019s)<\/option><option value='11' >Basketball (Men\u2019s)<\/option><option value='12' >Basketball (Women\u2019s)<\/option><option value='18' >Cheerleading &amp; Pep Band<\/option><option value='26' >Field Hockey (Women\u2019s)<\/option><option value='27' >Football (Men\u2019s)<\/option><option value='32' >Golf (Men\u2019s)<\/option><option value='33' >Golf (Women\u2019s)<\/option><option value='39' >Lacrosse (Men\u2019s)<\/option><option value='40' >Lacrosse (Women\u2019s)<\/option><option value='21' >Rowing (Men\u2019s Heavyweight)<\/option><option value='22' >Rowing (Men\u2019s Lightweight)<\/option><option value='23' >Rowing (Women\u2019s)<\/option><option value='59' >Sailing (Coed &amp; Women\u2019s)<\/option><option value='64' >Soccer (Men\u2019s)<\/option><option value='65' >Soccer (Women\u2019s)<\/option><option value='66' >Softball (Women\u2019s)<\/option><option value='535' >Squash (Women\u2019s)<\/option><option value='67' >Swimming &amp; Diving (Men\u2019s &amp; Women\u2019s)<\/option><option value='68' >Tennis (Men\u2019s)<\/option><option value='69' >Tennis (Women\u2019s)<\/option><option value='70' >Track &amp; Field\/XC (Men\u2019s)<\/option><option value='71' >Track &amp; Field\/XC (Women\u2019s)<\/option><option value='72' >Volleyball (Women\u2019s)<\/option><option value='315' >Athletic Director&#039;s Priority Fund<\/option><option value='587' >Women&#039;s Athletics Initiative<\/option><\/select><\/div><\/li><li id=\"field_70_4\" class=\"gfield gfield--type-hidden gfield--input-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_70_4' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='26AN010920' \/><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_70' 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_70' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_70' id='gform_theme_70' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_70' id='gform_style_settings_70' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_70' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='70' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_70' value='WyJbXSIsIjhhNzk4MjY1NmFiNTU3M2JmYmNjZTQzY2IwMmY4ZGEwIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_70' id='gform_target_page_number_70' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_70' id='gform_source_page_number_70' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 70, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery('#gform_ajax_frame_70').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_70');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_70').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){jQuery('#gform_wrapper_70').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_70').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_70').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_70').val();gformInitSpinner( 70, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery(document).trigger('gform_page_loaded', [70, current_page]);window['gf_submitting_70'] = 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_70').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [70]);window['gf_submitting_70'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_70').text());}else{jQuery('#gform_70').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"70\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_70\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_70\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_70\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 70, 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\n\n  \n    \n\n<section\n   id=\"tracker\"  class=\"cc--component-container cc--oa-tracker  regular-tracker-active\"\n\n  \n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-tracker\"\n        >\n\n            \n    \n\n<div\n    class=\"cc--component-container cc--oa-jumbo-tracker blue-bg-gray-text jb-countdown-1 jb-progress-0 image- \"\n\n  \n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-jumbo-tracker\"\n        >\n\n                      \n    \n\n<div\n    class=\"cc--component-container cc--oa-jumbo-countdown blue-bg-gray-text jb-countdown-1 jb-progress-0 image- \"\n\n  \n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-jumbo-countdown\"\n        >\n\n              \n    \n\n\n\n<div\n        class=\"f--field f--oa-countdown-heading blue-bg-gray-text jb-countdown-1 jb-progress-0 image- \"\n                        >\n\n    \n      <span>Power of Many Starts in&#8230;<\/span>\n\n<\/div><!-- f--field f--oa-countdown-heading -->\n      \n    \n\n\n\n<div\n        class=\"f--field f--oa-jumbo-countdown blue-bg-gray-text jb-countdown-1 jb-progress-0 image- \"\n                        >\n\n    \n          <div class=\"jumbo-countdown\" data-countdown=\"2026-08-31 00:00:00\"><\/div>\n  \n<\/div><!-- f--field f--oa-jumbo-countdown -->\n\n    <\/div><!-- c--component c--oa-jumbo-countdown -->\n\n<\/div><!-- cc--component-container cc--oa-jumbo-countdown -->\n    \n        \n    \n\n\n\n<div\n        class=\"f--field f--image blue-bg-gray-text jb-countdown-1 jb-progress-0 image- \"\n                        >\n\n    \n      \n  \n<\/div><!-- f--field f--image -->\n\n      \n    <\/div><!-- c--component c--oa-jumbo-tracker -->\n\n<\/div><!-- cc--component-container cc--oa-jumbo-tracker -->\n\n    \n    \n\n<div\n    class=\"cc--component-container cc--oa-small-tracker gu-blue \"\n\n  \n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-small-tracker\"\n        >\n\n                      \n    \n\n<div\n    class=\"cc--component-container cc--oa-small-countdown gu-blue \"\n\n   aria-label=\"Small Countdown\"\n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-small-countdown\"\n        >\n\n              \n    \n\n\n\n<div\n        class=\"f--field f--oa-small-countdown-heading gu-blue \"\n                 aria-label=\"Small Countdown\"        >\n\n    \n      <span>Power of Many Starts in&#8230;<\/span>\n\n<\/div><!-- f--field f--oa-small-countdown-heading -->\n  <div class=\"f--countdown-svg\">\n    <svg width=\"11px\"\n      height=\"11px\"\n      viewBox=\"0 0 11 11\"\n      version=\"1.1\"\n      xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n      xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\">\n      <g stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\n        <g transform=\"translate(-673.000000, -25.000000)\">\n          <g transform=\"translate(1.000000, 0.000000)\">\n            <g transform=\"translate(575.000000, 6.000000)\">\n              <polygon transform=\"translate(102.094035, 24.500000) rotate(90.000000) translate(-102.094035, -24.500000) \"\n                points=\"102.094035 19.5 107.594035 29.5 96.5940348 29.5\"><\/polygon>\n            <\/g>\n          <\/g>\n        <\/g>\n      <\/g>\n    <\/svg>\n  <\/div>\n      \n    \n\n\n\n<div\n        class=\"f--field f--oa-small-countdown gu-blue \"\n                 aria-label=\"Small Countdown\"        >\n\n    \n      <div class=\"sm-countdown\" data-countdown=\"2026-08-31 00:00:00\"><\/div>\n\n<\/div><!-- f--field f--oa-small-countdown -->\n\n    <\/div><!-- c--component c--oa-small-countdown -->\n\n<\/div><!-- cc--component-container cc--oa-small-countdown -->\n    \n    \n      \n    <\/div><!-- c--component c--oa-small-tracker -->\n\n<\/div><!-- cc--component-container cc--oa-small-tracker -->\n\n    <\/div><!-- c--component c--oa-tracker -->\n\n<\/section><!-- cc--component-container cc--oa-tracker -->\n\n\n  \n    \n\n<div\n    class=\"cc--component-container cc--spacer-block pantone280 half \"\n\n  \n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--spacer-block\"\n        >\n\n        \n\n    <\/div><!-- c--component c--spacer-block -->\n\n<\/div><!-- cc--component-container cc--spacer-block -->\n\n\n\n  \n    \n\n<section\n   id=\"idk\"  class=\"cc--component-container cc--oa-two-column appearance-georgetown-blue \"\n\n  \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          Give Hope. Fuel Discovery.\n        <\/h2>\n            <p>Every gift helps Georgetown Lombardi accelerate groundbreaking research, improve patient care, and bring new hope to people facing cancer. Not only are we the only National Cancer Institute-designated Comprehensive Cancer Center in the Washington, DC, metro area\u2014our researchers work every day to achieve groundbreaking advances toward beating cancer in all its forms. Our work is made possible by supporters like you who share our goal in helping cancer patients become cancer survivors.<\/p>\n<p>Your <strong>generosity makes breakthroughs possible<\/strong>. Please give as generously as you can today. Thank you!<\/p>\n\n    <\/div>\n  <\/div>\n\n  <div class=\"content\">\n    <div class=\"right column\">\n              <h2 class=\"heading right-heading\">\n          Areas of Impact\n        <\/h2>\n            <p>Your generosity helps move critical work forward by securing the necessary resources in the battle to save lives, such as:<\/p>\n<ul>\n<li>Leading-edge research equipment and first-rate research facilities<\/li>\n<li>More world-class researchers to help lead the fight<\/li>\n<li>Training for the next generation of researchers<\/li>\n<li>Significant clinical trial development \u2013 the source of the next generation of cancer therapy<\/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  \n    \n\n<blockquote\n    class=\"cc--component-container cc--pull-quote futura-book-oblique text-georgetown-blue \"\n\n  \n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--pull-quote\"\n        >\n\n              \n    \n\n\n\n<div\n        class=\"f--field f--richtext \"\n                        >\n\n    \n      <p>\u201cI see the impact of philanthropy every day. It allows us to pursue the early leads and promising science that will one day lead to a cure for cancer.\u201d<\/p>\n\n\n<\/div><!-- f--field f--richtext -->\n          \n    \n\n\n\n<div\n        class=\"f--field f--attribution \"\n                        >\n\n    \n      <cite>\u2014Louis M. Weiner, director of the Lombardi Comprehensive Cancer Center<\/cite>\n\n<\/div><!-- f--field f--attribution -->\n  \n    <\/div><!-- c--component c--pull-quote -->\n\n<\/blockquote><!-- cc--component-container cc--pull-quote -->\n\n\n\n\n  \n    \n\n<section\n   id=\"banner\"  class=\"cc--component-container cc--oa-landing-body title-font-futura body-font-futura no-background-image\"\n\n  \n  \n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-landing-body\"\n        >\n\n          \n      <div class=\"landing-body-bottom\">\n      \n              <div class=\"body-content\">\n              \n    \n\n\n\n<div\n        class=\"f--field f--wysiwyg \"\n                        >\n\n    \n      <p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-4355 alignleft\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2026\/07\/NCI-space-300x300.png\" alt=\"\" width=\"60\" height=\"60\" srcset=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2026\/07\/NCI-space-300x300.png 300w, https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2026\/07\/NCI-space-150x150.png 150w, https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2026\/07\/NCI-space.png 400w\" sizes=\"(max-width: 60px) 100vw, 60px\" \/><\/p>\n<p>As one of only 58 research and treatment facilities nationwide that have qualified as a National Cancer Institute-designated Comprehensive Cancer Center, Georgetown Lombardi leads the world in innovative cancer research.<\/p>\n\n\n<\/div><!-- f--field f--wysiwyg -->\n        <\/div>\n      \n      \n          <\/div>\n  \n    <\/div><!-- c--component c--oa-landing-body -->\n\n<\/section><!-- cc--component-container cc--oa-landing-body -->\n\n\n\n  \n    \n\n<section\n   id=\"idk2\"  class=\"cc--component-container cc--oa-two-column appearance-light-gray \"\n\n  \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. <strong>#EndingCancerStartsHere<\/strong><\/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 giving through a Donor-Advised Fund (DAF) or other ways to support Georgetown Lombardi, please visit <a href=\"https:\/\/giving.georgetown.edu\/how-to-give\/\">How to Give webpage<\/a>.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\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","protected":false},"excerpt":{"rendered":"","protected":false},"author":3,"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-4323","page","type-page","status-publish","hentry"],"acf":{"share_link":"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/?utm_source=do&utm_medium=email&utm_campaign=gc808_outreach","activate_citymap":false,"chart_embed":false,"contact_button_text":"","contact_email":"","mapbox_embed":false,"override_nav_logo":false,"page_header_appearance":"header-default"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>LCCC Template page - Give<\/title>\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\/lccc-template-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LCCC Template page - Give\" \/>\n<meta property=\"og:url\" content=\"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/\" \/>\n<meta property=\"og:site_name\" content=\"Give\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-12T18:02:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/10\/giving-default-share-fb.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/\",\"name\":\"LCCC Template page - Give\",\"isPartOf\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/#website\"},\"datePublished\":\"2026-07-27T17:58:25+00:00\",\"dateModified\":\"2026-08-12T18:02:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/my.giving.georgetown.edu\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"LCCC Template 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":"LCCC Template page - Give","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\/lccc-template-page\/","og_locale":"en_US","og_type":"article","og_title":"LCCC Template page - Give","og_url":"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/","og_site_name":"Give","article_modified_time":"2026-08-12T18:02:50+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2020\/10\/giving-default-share-fb.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/","url":"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/","name":"LCCC Template page - Give","isPartOf":{"@id":"https:\/\/giving.georgetown.edu\/give\/#website"},"datePublished":"2026-07-27T17:58:25+00:00","dateModified":"2026-08-12T18:02:50+00:00","breadcrumb":{"@id":"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/giving.georgetown.edu\/give\/lccc-template-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/my.giving.georgetown.edu\/"},{"@type":"ListItem","position":2,"name":"LCCC Template 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\/4323","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\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/comments?post=4323"}],"version-history":[{"count":32,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/4323\/revisions"}],"predecessor-version":[{"id":4437,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/4323\/revisions\/4437"}],"wp:attachment":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/media?parent=4323"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}