        <script type="text/javascript" id="pac_dcm_column_1">
            // Initialize Carousel
            jQuery(function ($) {
                if ((jQuery(window).width() < 0)|| (jQuery(window).width() <= 480)|| (jQuery(window).width() >= 480 && jQuery(window).width() <= 980)|| (jQuery(window).width() >= 980)) {
                    // Define media queries for different device sizes
                    const columnClass = ".pac_dcm_column_1";
                    column = $(columnClass);
                    column.navigationImages = [];
                    slickSettings = {
                        fade: false,
                        centerMode: true,
                        infinite: true,
                        slidesToShow: 1,
                        variableWidth: false,
                        slidesToScroll: 1,
                        autoplay: true,
                        autoplaySpeed: 8000,
                        arrows: false,
                        dots: true,
                        rtl: false,
                        speed: 500,
                        pauseOnHover: false,
                        useCSS: true,
                        useTransform: true,
                        cssEase: 'ease',
                        waitForAnimate: true,
                        swipe: true,
                        touch: true,
                        swipeToSlide: true,
                        rows: 1,
                        touchThreshold: 500,
                        initialSlide: 0,
                        adaptiveHeight: false,
                        responsive: [
                            {
                                breakpoint: 980,
                                settings: {
                                    fade: false,
                                    centerMode: true,
                                    variableWidth: false,
                                    infinite: true,
                                    slidesToShow: 1,
                                    slidesToScroll: 1,
                                    autoplay: true,
                                    autoplaySpeed: 8000,
                                    arrows: false,
                                    dots: true,
                                    pauseOnHover: false,
                                    swipe: true,
                                    touch: true,
                                    swipeToSlide: true,
                                    rows: 1,
                                    touchThreshold: 500,
                                    initialSlide: 0,
                                    adaptiveHeight: false                                }
                            },
                            {
                                breakpoint: 767,
                                settings: {
                                    fade: false,
                                    centerMode: true,
                                    infinite: true,
                                    variableWidth: false,
                                    slidesToShow: 1,
                                    slidesToScroll: 1,
                                    autoplay: true,
                                    autoplaySpeed: 8000,
                                    arrows: false,
                                    dots: true,
                                    pauseOnHover: false,
                                    swipe: true,
                                    touch: true,
                                    swipeToSlide: true,
                                    rows: 1,
                                    touchThreshold: 500,
                                    initialSlide: 0,
                                    adaptiveHeight: false                                }
                            }
                        ]
                    };

                                        //======================================================================
                    // Carousel Navigation Images
                    //======================================================================
                    column.navigationImages = jQuery(columnClass).data("slick-navigation-images");
                    if ('undefined' === typeof column.navigationImages) {
                        column.navigationImages = [];
                    }
                                        // Total Items Per Row
                    const numberOfItemsPerRow = parseInt('1');
                    //======================================================================
                    // Slick On Init
                    //======================================================================
                    column.on('init', function (event, slick, currentSlide, nextSlide) {
                        let overlayLoading = column.prev('.loading__overlay');
                        if (overlayLoading.length > 0) {
                            overlayLoading.fadeOut('slow');
                            column.fadeIn('slow');
                        }
                        window.carouselCurrentSlide = slick.currentSlide;
                        window.carouselTotalSlides = slick.slideCount;
                        $(columnClass + ' .slick-current').addClass('active');
                        $(columnClass + ' .slick-current').next('.slick-slide').addClass('nextSlide');
                        $(columnClass + ' .slick-current').prev('.slick-slide').addClass('previousSlide');
                        if (numberOfItemsPerRow === 3) {
                            $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide');
                            $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass("prePreviousSlide");
                        } else if (5 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (7 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (9 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (11 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        }
                        // Remove Display Inline From Div if Use Row
                                                setTimeout(function () {
                            const $clonedYoutube = column.find(
                                '.slick-cloned iframe[src*="youtube.com/embed"]'
                            );
                            if ($clonedYoutube.length) {
                                $clonedYoutube.remove();
                            }
                        }, 100);
                                            });
                    //======================================================================
                    // Initliaze Slick
                    //======================================================================
                    column.slick(slickSettings);
                    //======================================================================
                    // Slick Slider Counter
                    //======================================================================
                                        //======================================================================
                    // Slick Before Change
                    //======================================================================
                    column.on('beforeChange', function (event, {slideCount: count}, currentSlide, nextSlide) {
                        let dataSlideIndex = [nextSlide, nextSlide - count, nextSlide + count].map((n) => columnClass + ` [data-slick-index="${n}"]`).join(", ");
                                                $(columnClass + ' .slick-slide')
                            .removeClass('active')
                            .removeClass('nextSlide')
                            .removeClass('preNextSlide')
                            .removeClass('previousSlide')
                            .removeClass('prePreviousSlide');
                        $(dataSlideIndex).addClass('active');
                        $(columnClass + ' .slick-slide.active').next('.slick-slide').addClass('nextSlide');
                        $(columnClass + ' .slick-slide.active').prev('.slick-slide').addClass('previousSlide');
                        if (numberOfItemsPerRow === 3) {
                            $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide');
                            $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass('prePreviousSlide');
                        } else if (5 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (7 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (9 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        } else if (11 === numberOfItemsPerRow) {
                            $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide');
                            $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide');
                        }
                        
                                            });
                    //======================================================================
                    // Slick After Change
                    //======================================================================
                    column.on('afterChange', function (event, slick, currentSlide) {
                                            });
                    //======================================================================
                    // Drag Works and Click Plays Video
                    //======================================================================
                                        const $videos = column.find(
                        '.slick-slide:not(.slick-cloned) .et_pb_video_box'
                    );
                    if ($videos.length > 0) {
                        $('iframe').each(function () {
                            const iframe = this;
                            const overlay = $('<div class="iframe-overlay"></div>');
                            overlay.css({
                                position: 'absolute',
                                top: 0,
                                left: 0,
                                width: '100%',
                                height: '100%',
                                zIndex: 999,
                                cursor: 'grab'
                            });
                            $(iframe).parent().css('position', 'relative');
                            $(iframe).parent().append(overlay);
                            overlay.show();
                            overlay.on('click', function () {
                                $(this).hide();
                                setTimeout(function () {
                                    overlay.show();
                                }, 3000);
                            });
                        });
                    }
                                        //======================================================================
                    // Keyboard Navigation
                    //======================================================================
                                        //======================================================================
                    // RecalculateWidth:
                    //======================================================================
                    
                                        // If continueous scroll is on, ovveride autoplay settings
                                        jQuery(document).ready(function () {
                        /**
                         * Fixed Transition
                         */
                        jQuery(".pac_dcm_column_1 .slick-slide").css({
                            'transition': "all 500ms ease-in-out",
                            'animation-duration': "500ms",
                            'animation-iteration-count': "1"
                        })
                        /**
                         * Fixed Smooth Cont. Scroll
                         */
                        ;
                        jQuery(".pac_dcm_column_1 .slick-track").css({'transform': 'none'});
                                                /**
                         * Fixed Last To First Slide Bumping
                         *
                         * @since 1.3
                         *
                         */
                                                column.on('beforeChange', function (event, slick, currentSlide, nextSlide) {
                            if (0 === nextSlide) {
                                let slideClasses = 'slick-current slick-active' + (slickSettings.centerMode ? ' slick-center' : '');
                                setTimeout(function () {
                                    $('[data-slick-index="' + slick.$slides.length + '"]').addClass(slideClasses).siblings().removeClass(slideClasses);
                                    for (let i = slick.options.slidesToShow - 1; i >= 0; i--) {
                                        if (i !== 0) {
                                            $('[data-slick-index="' + i + '"]').addClass('slick-current slick-active');
                                        } else {
                                            $('[data-slick-index="' + i + '"]').addClass(slideClasses);
                                        }
                                    }
                                }, 0);
                            }
                        });
                                            });
                }
                                /**
                 * Closes open toggle items in a slick slider column before slide change on phones with limited items.
                 */
                const itemsOnPhone = "1";
                if (column.find('.et_pb_toggle_item').length > 0) {
                    // BeforeChange
                    column.on('beforeChange', function (event, slick, currentSlide, nextSlide) {
                        slick.$slides.each(function (index, slide) {
                            if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) {
                                $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close');
                                $(slide).find('.et_pb_toggle_content').hide();
                            }
                        });
                        // Prevent Slider To Move
                        $('.slick-slide').find('.et_pb_toggle_item').on('click', function (e) {
                            if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) {
                                $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close');
                                $(slide).find('.et_pb_toggle_content').hide();
                            }
                            column.slick('slickGoTo', $('.slick-slide.active.slick-current.slick-active').data('slick-index'))
                        });
                    });
                }
            });
        </script>
        <script type="text/javascript" id="divi-carousel-maker-modify-module-css">
            /**
             * Initializes the carousel module modification script.
             * This script adjusts the display property of carousel modules based on their computed styles.
             */
            document.addEventListener('DOMContentLoaded', () => {
                setTimeout(() => {
                    const carouselBaseClass = 'pac_dcm_column_';
                    const modules = document.querySelectorAll(`div[class*="${carouselBaseClass}"] .et_pb_module`);
                    modules.forEach(module => {
                        const styles = window.getComputedStyle(module);
                        if (styles.maxWidth !== 'none') {
                            module.style.display = 'flex';
                        }
                    });
                }, 500);
            });
        </script>
        BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Shady Maple - ECPv6.15.15//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:Shady Maple
X-ORIGINAL-URL:https://www.shady-maple.com
X-WR-CALDESC:Events for Shady Maple
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/New_York
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:20240310T070000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
TZNAME:EST
DTSTART:20241103T060000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:20250309T070000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
TZNAME:EST
DTSTART:20251102T060000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:20260308T070000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
TZNAME:EST
DTSTART:20261101T060000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:20270314T070000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
TZNAME:EST
DTSTART:20271107T060000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;VALUE=DATE:20260403
DTEND;VALUE=DATE:20260404
DTSTAMP:20260421T062828
CREATED:20240220T190010Z
LAST-MODIFIED:20260327T120630Z
UID:10000303-1775174400-1775260799@www.shady-maple.com
SUMMARY:Good Friday
DESCRIPTION:Good Friday\nFriday\, April 3\, 2026\n			\n				\n				\n				\n				\n				Breakfast | Sundae Bar\, Ice Cream & Waffles available at Breakfast! \nLunch & Dinner | Friday Dinner menu served for Lunch & Dinner: NY Strip Steaks\, Beef Brisket\, Salmon\, Cajun Catfish\, Fried Shrimp & Crab Cakes! \n			\n				\n				\n				\n				\n				The dinner menu starts at 11:00 am. \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				BREAKFAST\n7:00am – 10:00am \n$17.99\nAdult Breakfast Price \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				LUNCH/DINNER\n11:00am – 7:30pm \n$29.99\nAdult Lunch/Dinner Price \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Good Friday Lunch & Dinner Features\nNY Strip Steak\, Beef Brisket\, Salmon\, Cajun Catfish\, Fried Shrimp\, Crab Cakes\, 46 salad bar items\, 3 soups\, 6 homemade breads & rolls\, 4 cheeses\, 8 meats\, 14 vegetables\, 10 cold desserts\, 3 hot desserts\, 8 pies\, 6 cakes\, sundae bar & many beverages. \nClick the button below to view our nightly features and pricing. \n			\n				MENU\, PRICING & HOURS
URL:https://www.shady-maple.com/event/good-friday/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Events,Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2024/02/AdobeStock_338764261-scaled.jpeg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20260317
DTEND;VALUE=DATE:20260327
DTSTAMP:20260421T062828
CREATED:20260129T201847Z
LAST-MODIFIED:20260310T183423Z
UID:10000942-1773705600-1774569599@www.shady-maple.com
SUMMARY:March Into Savings Group Special
DESCRIPTION:March into Savings\nShady Maple Smorgasbord Group Special\nTuesday–Thursday\, March 17 through March 26. \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n\n$20 off  when you purchase 4 or more smorgasbord adult dinners\nAll dinners must be on the same check \n \n \n			\n				\n				\n				\n				\n				Valid Tuesday–Thursday\, March 17–March 26\, 2026. $20 discount applies with the purchase of four adult Smorgasbord dinners on a single check. Dine-in only. Not valid with other discounts\, offers\, or promotions. No cash value.  \n			\n				SEE MENU
URL:https://www.shady-maple.com/event/family-night-special/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2026/01/happy-loving-caucasian-family-with-adult-children-2026-01-09-11-10-58-utc-scaled.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20260315
DTEND;VALUE=DATE:20260406
DTSTAMP:20260421T062828
CREATED:20260313T163432Z
LAST-MODIFIED:20260313T163438Z
UID:10000943-1773532800-1775433599@www.shady-maple.com
SUMMARY:20% Off Melissa & Doug
DESCRIPTION:20% off\nMarch 15 – April 5\, 2026 \nUnleash the power of play with Melissa & Doug’s exciting sale! Explore a vast selection of high-quality wooden toys\, designed to spark creativity and imagination in children of all ages. From pretend play sets and learning toys to arts & crafts and outdoor adventures\, there’s something special for every curious mind. For a limited time\, discover amazing deals and bring the joy of Melissa & Doug into your home at an incredible price! Get 20% off all Melissa & Doug toys . \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				OUR M & D SELECTION\n			\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Browse Our Weekly Deals!\nWEEKLY AD \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Party Trays for Any Occasion!\nPARTY TRAYS \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Recipe Ideas for Every Meal\nRECIPES
URL:https://www.shady-maple.com/event/melissa-and-doug/
LOCATION:Shady Maple Gift Shop\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Events,Gift Shop,Smorgasbord
ATTACH;FMTTYPE=image/png:https://www.shady-maple.com/wp-content/uploads/2023/10/Melissa-Doug-Wordpress-Banner.png
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/New_York:20260302T080000
DTEND;TZID=America/New_York:20260315T170000
DTSTAMP:20260421T062828
CREATED:20240108T210046Z
LAST-MODIFIED:20260309T200449Z
UID:10000294-1772438400-1773594000@www.shady-maple.com
SUMMARY:Smorgasbord 41st Anniversary Celebration
DESCRIPTION:Smorgasbord 41st Anniversary Celebration\n			\n				\n				\n				\n				\n				March 2 – March 14\, 2026\nCelebrating 41 years of the Shady Maple Smorgasbord! Join us as we look back at 41 years of great food with:\nHourly drawings with prizes from the gift shop.  \nKids ActivitiesFace painting and balloon art Friday\, March 6 and 13 from 5 pm to 7 pm. \nIn addition to the regular nightly menu\, indulge in expanded menu features. \nWhoop E. Pie appearances throughout the day.9:30 am – 10:30 am12 pm – 1 pm4:30 pm – 5:30 pm \n			\n				\n				\n				\n				\n				 Coupon for 20% off one item at the Gift Shop with Smorgasbord purchase.\nCannot be used on discounted items. For in-stock items only. Non-transferrable. No cash value. Valid during the Smorgasbord Anniversary Celebration. \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Come Out & Support!!\nTo celebrate 41 years\, we are giving back!\n4.1% of Smorgasbord profits on the following dates: Tuesday (3/3\, 3/10)\, Wednesday (3/4\, 3/11)\, and Thursday (3/5\, 3/12) go to CrossNet Ministries!  \n			\n				\n				\n				\n				\n				Learn more about CrossNet Ministries and their work with the community here: https://elancocross.org/ \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Menu Specials\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Breakfast\nRaspberry French Toast – Made with bakery gourmet bread! \nFarmers Omelet \nCreamed Egg – Our Founder’s Favorite! \nCustomize your pancakes with peanut butter sauce\, chocolate sauce\, and caramel sauce! \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Lunch & Dinner\nGrills: M-F\nBBQ Prime Rib Sandwiches (Thin Sliced Prime Rib\, Grilled Onions\, Grilled Peppers & Provolone Cheese) \nCarolina Chili Dog (All Beef Hot dog\, Restaurant-style Cole Slaw\, Onions\, Chili & Mustard) \nFounders Favorites\nChicken Etti\, Cracker Pudding \nCustom Rice Bar Station:\nWhite Rice\, Louisiana Style Rice\, Spanish Rice\, Rice and Beans\, Coconut Curry Chicken\, Sweet Chili Shrimp. Grilled Plantains \nSalad:\nPierogi Salad \nDessert:\nPeanut Butter Pie
URL:https://www.shady-maple.com/event/smorgasbord-anniversary-celebration/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2026/02/Anniversary-Banner.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20260216
DTEND;VALUE=DATE:20260217
DTSTAMP:20260421T062828
CREATED:20240108T211253Z
LAST-MODIFIED:20260203T192920Z
UID:10000295-1771200000-1771286399@www.shady-maple.com
SUMMARY:Presidents' Day Surf and Turf Feast
DESCRIPTION:Presidents Day Surf and Turf Feast\nMonday\, February 16\, 2026 \nCelebrate Presidents Day with our Surf & Turf Specials!Indulge in a lineup fit for a president — savory steak\, fresh salmon\, golden crab cakes\, and classic shrimp cocktail. Come hungry and enjoy the best of land and sea\, all in one visit! \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Breakfast | Sundae Bar\, Ice Cream & Waffles available at Breakfast! \nLunch & Dinner | Monday Dinner menu served for Lunch & Dinner: Delmonico & NY Strip Steaks\, Beef Brisket\, Grilled Boneless Pork Chops! Plus our fresh salmon\, golden crab cakes\, and classic shrimp cocktail! \n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				BREAKFAST\n7:00am – 10:00am \n$17.99\nAdult Breakfast Price \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				LUNCH/DINNER\n11:00am – 7:30pm \n$29.99\nAdult Lunch/Dinner Price \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Sales tax & service fee not included on listed prices. \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Presidents Day Lunch & Dinner Features\nDelmonico & NY Strip Steaks\, Beef Brisket\, Grilled Boneless Pork Chops\, 46 salad bar items\, 3 soups\, 6 homemade breads & rolls\, 4 cheeses\, 8 meats\, 14 vegetables\, 10 cold desserts\, 3 hot desserts\, 8 pies\, 6 cakes\, sundae bar & many beverages. \nClick the button below to view our nightly features and pricing. \n			\n				MENU\, PRICING & HOURS
URL:https://www.shady-maple.com/event/presidents-day/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2024/01/PresidentsDay-FeaturedImage.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20260214
DTEND;VALUE=DATE:20260215
DTSTAMP:20260421T062828
CREATED:20240108T205101Z
LAST-MODIFIED:20260203T215034Z
UID:10000293-1771027200-1771113599@www.shady-maple.com
SUMMARY:Valentine's Day at Shady Maple Smorgasbord
DESCRIPTION:Valentine’s Day at Shady Maple Smorgasbord\n\n			\n				\n				\n				\n				\n				Celebrate with a special Valentine’s Feast! \n			\n				\n				\n				\n				\n				Saturday\, February 14\, 2026 \n			\n				\n				\n				\n				\n				No seating between 10 am – 11 am while we prepare the buffet.  \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				BREAKFAST\n7:00 am – 10:00 am \n$17.99\nAdult Breakfast Price \nPlus tax and 12% Service Fee \n\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				DINNER\n11:00 am – 7:30 pm Last seating \n$37.99\nAdult Dinner Price \nPlus tax and 12% Service Fee \nEnjoy everything Shady Maple has to offer! \n\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				LUNCH & DINNER FEATURES\n			\n				\n				\n				\n				\n				Grill Features\nNew York Strip Steak\, Delmonico Steak\, Prime Rib\, Salmon\, Cajun Catfish\, Oyster Stew \nBuffet Line\nCrab Cakes\, Fried Shrimp\, Fried Oysters\, Hushpuppies\, Crab Au Gratin\, Steamed Clams\, Steamed Mussels\, Steamed Shrimp\, Baked Scallops \nFeatured Appetizers\nVariety of Seafood Salads\, Cocktail Shrimp\, New England Clam Chowder\, Lobster Bisque \nAll of these features are in addition to our regular dinner menu. Last seating for breakfast is at 10 am. No early bird discount. We will resume service at 11 am with our special Valentine’s Day menu \n			\n				\n				\n				\n				\n				Food is available on the buffet 45 min after last seating
URL:https://www.shady-maple.com/event/smorgasbord-valentines-day/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Farm Market,Gift Shop,Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2024/01/VDay-FeaturedImage.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20260209
DTEND;VALUE=DATE:20260215
DTSTAMP:20260421T062828
CREATED:20250106T212314Z
LAST-MODIFIED:20260210T162145Z
UID:10000364-1770595200-1771113599@www.shady-maple.com
SUMMARY:Valentine's Day at Shady Maple Farm Market
DESCRIPTION:Valentine’s Day is just around the corner\, and Shady Maple Farm Market has everything you need to make it special. So\, get ready for Valentine’s Day and surprise your loved ones with these amazing treats from Shady Maple Farm Market \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				February 9 – 14\nSurf and Turf Combo \n$22.95\n8 oz. Certified Angus Beef Filet Mignon paired with a 7 oz. Lobster Tail \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				February 9 – 14\nSweetheart Ribeye \n$13.95/lb.\nThis Valentine’s Day\, surprise your loved one with our heart-shaped ribeye steaks! Perfect for a romantic dinner at home\, these delicious cuts can be grilled or pan-seared to add a unique touch to your evening. Don’t miss the chance to impress! \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				February 14\n Specialty Gourmet Strawberries10 am – 2 pm \nThis Valentine’s Day\, elevate your celebration with our limited-time chocolate-dipped treats! Delight your loved one with our chocolate-covered strawberries. Perfect for a romantic evening or a fun gathering\, these sweet indulgences are sure to impress. Don’t miss out—get them while they last! \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				February 12 – 14\nFresh Flower Bouquets  \n$34.99Dozen Roses\, Baby Breath with greens in a vase.  \n $44.99Dozen Roses with Vase and Flower Upgrade in a bag. \nPre-orders only! Call 771-354-4981 ext. 601 to pre-order \n \n \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n					\n					\n					\n				\n				\n					\n					\n					\n				\n				\n			\n				\n				\n				\n				\n				\n				\n					\n					\n					\n				\n				\n			\n				\n				\n				\n				\n				\n				\n					\n					\n					\n				\n				\n			\n				\n				\n				\n				\n				\n				\n					\n					\n					\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				BAKERY
URL:https://www.shady-maple.com/event/valentines-day-at-shady-maple-farm-market/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Farm Market
ATTACH;FMTTYPE=image/png:https://www.shady-maple.com/wp-content/uploads/2025/01/Valentines-Cake.png
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20260202
DTEND;VALUE=DATE:20260301
DTSTAMP:20260421T062828
CREATED:20250602T131519Z
LAST-MODIFIED:20260127T185318Z
UID:10000375-1769990400-1772323199@www.shady-maple.com
SUMMARY:FREE drink with a take-out purchase!
DESCRIPTION:Get a Free drink with Your $10 or More Take-Out Purchase!\n\nEnjoy a FREE drink with your take-out purchase!Spend $10 or more on Take-Out and receive a FREE Pepsi soda\, Turkey Hill Tea\, or bottled water—your choice! \nHow It Works\n\nValid with any take-out meal purchase only\nOffer available February 1–28\, 2026\nNot valid with Smorgasbord meal purchases\nLimit one free drink per purchase\n\nGrab a Meal. Get a Free Drink.\nClick below for full details and menu options. \n\n\n			\n				LEARN MORE ABOUT TAKE-OUT
URL:https://www.shady-maple.com/event/take-out-special-offer/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2023/12/TakeOut-FeaturedImage.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20260119
DTEND;VALUE=DATE:20260120
DTSTAMP:20260421T062828
CREATED:20240104T181257Z
LAST-MODIFIED:20260115T175316Z
UID:10000292-1768780800-1768867199@www.shady-maple.com
SUMMARY:Martin Luther King Jr. Day
DESCRIPTION:Martin Luther King Jr. Day\nHonoring the life and legacy of Dr. Martin Luther King Jr.“The time is always right to do what is right.” – Dr. King \nMonday\, January 19\, 2026\nImportant Update for January 19th: Dinner Menu Starts at 11 AMWe expect more guests on this special day\, so we’re serving our full dinner menu and pricing all day for your convenience. \n  \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Breakfast7:00 AM – 10:00 AM \n$17.99\n+tax and 12% Service Fee \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Lunch & Dinner11 AM – 7:30 PM \n$27.99\n+tax and 12% Service Fee \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Lunch & Dinner Features\nDelmonico & NY Strip Steaks\, Beef Brisket\, Grilled Boneless Pork Chops\, 46 salad bar items\, 3 soups\, 6 homemade breads & rolls\, 4 cheeses\, 8 meats\, 14 vegetables\, 10 cold desserts\, 3 hot desserts\, 8 pies\, 6 cakes\, sundae bar & many beverages. \nClick the button below to view our nightly features and pricing. \n			\n				MENU\, PRICING & HOURS
URL:https://www.shady-maple.com/event/mlk24/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Events,Family Fun,Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2024/01/Flag.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20251231
DTEND;VALUE=DATE:20260101
DTSTAMP:20260421T062828
CREATED:20231206T230412Z
LAST-MODIFIED:20251229T144944Z
UID:10000284-1767139200-1767225599@www.shady-maple.com
SUMMARY:New Year's Eve Celebration
DESCRIPTION:New Year’s Eve Celebration\nDecember 31\, 2025\n			\n				\n				\n				\n				\n				Grill Features | New York Strip Steak\, Delmonico Steak\, Prime Rib\, Salmon\, Cajun Catfish\, Oyster Stew \nBuffet Line | Crab Cakes\, Fried Shrimp\, Fried Oysters\, Hushpuppies\, Crab Au Gratin\, Steamed Clams\, Steamed Mussels\, Steamed Shrimp \nFeatured Appetizers | Variety of Seafood Salads\, Cocktail Shrimp\, New England Clam Chowder\, Lobster Bisque \nAll of these features are in addition to our regular dinner menu. The last seating for lunch is at 2pm.We resume service at 3pm with our special dinner menu. \nBreakfast and lunch are regular pricing.  \n \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				SPECIAL DINNER\n3pm – 7:30 pm (Last seating) \n$34.99\nAdult Dinner Price \n No seating from 2 pm-3 pm to prepare the buffet. \n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Sales tax & service fee not included on listed prices.
URL:https://www.shady-maple.com/event/new-years-eve-celebration/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Events,Family Fun,Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2023/12/NYE-WP-FeaturedImage.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20251128
DTEND;VALUE=DATE:20251129
DTSTAMP:20260421T062829
CREATED:20241028T211707Z
LAST-MODIFIED:20251112T135432Z
UID:10000355-1764288000-1764374399@www.shady-maple.com
SUMMARY:Black Friday
DESCRIPTION:Black Friday at the Smorgasbord\nNovember 28\, 2025\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Breakfast7:00AM to 10:00AM$16.99ADULTIce Cream & Sundae Bar Open! \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Lunch & Dinner11:00AM to 7:30PM$26.99ADULTDinner Features Start at 11AM! \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Sales tax & service fee are not included on listed prices. \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Shop Our Wide Selection of Gifts at the Gift Shop!\nLocated on the lower level of the Smorgasbord\, the Shady Maple Gift Shop is packed with items for collectors\, cooks\, kids\, and more! You can find gift for any interest!\n			\n				GIFT SHOP\n			\n			\n				\n				\n				\n				\n				\n				\n					\n					\n					\n				\n				\n					\n					\n					\n				\n				\n					\n					\n					\n				\n				\n					\n					\n					\n				\n				\n					\n					\n					\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Browse Our Weekly Deals!\nWEEKLY AD \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Party Trays for Any Occasion!\nPARTY TRAYS \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Recipe Ideas for Every Meal\nRECIPES
URL:https://www.shady-maple.com/event/black-friday-smorgasbord/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Events,Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2023/11/BlackFriday-Featured.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20251119
DTEND;VALUE=DATE:20251127
DTSTAMP:20260421T062829
CREATED:20231110T192159Z
LAST-MODIFIED:20251118T122336Z
UID:10000280-1763510400-1764201599@www.shady-maple.com
SUMMARY:Save on all the Trimmings
DESCRIPTION:Save on all The Trimmings\nNovember 19 – November 26\, 2025 \nFind what you need to make your Thanksgiving dinner one to remember at amazing prices!\n\n			\n				\n				\n				\n				\n				To order your fresh Thanksgiving Turkey click here  \n			\n				\n				\n				\n				\n				Shady Maple Rewards Members Save $5 When You Pre-Order Your Fresh Turkey! \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Soup & Salad\nMade in the Farm Market \nBread Stuffing or Potato Filling  $5.54/lb. \nSweet potato or Green Bean Casserole  $5.54/lb. \nGourmet Mashed Potatoes $5.54/ lb. \nCranberry Relish or Cranberry Salad $5.54/lb. \nPumpkin Custard $5.54/lb. \nCranberry Waldorf Salad $5.54/lb. \n			\n				\n				\n				\n				\n				Produce\nGreen Beans $1.55/lb. \nJumbo & Medium Yams $0.65/lb. \n5 lb. bag Yukon Gold Potatoes $1.95/ea. \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Bakery\nMade in the Farm Market \nPotato Dinner Rolls; Dozen $1.95  \n9″ Pumpkin Pie $5.00  \nCranberry Cornbread  $5.50 \n8″ Pecan Pie $7.77 \n			\n				\n				\n				\n				\n				Meat & Deli\nStore Brand Whole Frozen Turkey $1.59/lb. \nJohn F. Martin Whole Smoked Turkey $4.99/lb. \nJohn F. Martin Boneless Honey Maple Dinner Ham  $2.99/lb. \nMade in the Farm Market \nShady Maple Fire Glazed Spiral Ham $4.59/lb. \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Grocery\nOcean Spray Cranberry Sauce; 14 oz. $2.25 \nBruces Cut Yams; 40 oz. 2/$6.95 \nHeinz Gravies; select varieties\, 12 oz. 2/$3.95 \nCollege Inn Broths; select varieties\, 32 oz. Aseptic Box 2/$3.95 \nStove Top Stuffing; select varieties\, 6 oz. $1.65 \nCampbells Cream Soup; chicken or mushroom\, 10.75 oz. 4/$4.95 \nJet Puffed Mini Marshmallows; 10 oz. 4/$4.95 \nOcean Spray Cranberry Juice Drink; select flavors\, 64 oz. . 2/$5.95 \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Dairy\nEssential Everyday Cream Cheese $1.95 \nEssential Everyday Pie Crust $3.95 \nEssential Everyday Whipped Topping $2.95 \n			\n				\n				\n				\n				\n				Bulk\nInstant Potato Flakes $3.25/lb. \nMammoth Pecan ½’s $10.45/lb. \nYogurt Covered Cranberries $7.45/lb. \n			\n				\n				\n				\n				\n				Frozen\nHanover Vegetables; 10 to 12 oz. 2/$4 \nBreyer’s Ice Cream; 1.5 qts. 2/$7 \nPillsbury Pet Ritz Pie Shells; 2 ct.  2/$6 \n			\n				\n				\n				\n				\n				Seafood\nSelect or Standard Fresh Oysters; 8 oz. $9.95 \nOur Own Steamed Shrimp $8.95/lb. \n21/25 Cooked Shrimp $9.95/lb. \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				SEE WEEKLY AD
URL:https://www.shady-maple.com/event/save-on-all-the-trimmings/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Farm Market
ATTACH;FMTTYPE=image/png:https://www.shady-maple.com/wp-content/uploads/2023/11/Save-on-all-the-Trimmings.png
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20251111
DTEND;VALUE=DATE:20251112
DTSTAMP:20260421T062829
CREATED:20231101T195034Z
LAST-MODIFIED:20251023T165210Z
UID:10000276-1762819200-1762905599@www.shady-maple.com
SUMMARY:Veterans Day
DESCRIPTION:Veterans Day\nTuesday\, November 11\, 2025 \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Offers are valid for veterans and active service members on November 11\, 2025. Please show military ID to receive the discount. \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				50% OFFANY MEALat Shady Maple Smorgasbord\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				25% OFFEVERYTHINGat Shady Maple Gift Shop
URL:https://www.shady-maple.com/event/veterans-weekend/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2023/10/Memorial-Day-Flyer-1.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20251028
DTEND;VALUE=DATE:20251029
DTSTAMP:20260421T062829
CREATED:20241009T164330Z
LAST-MODIFIED:20250930T151918Z
UID:10000349-1761609600-1761695999@www.shady-maple.com
SUMMARY:National First Responder Day
DESCRIPTION:National First Responder Day\nOctober 28\, 2025\n			\n				\n				\n				\n				\n				25% off\nSmorgasbord Meal for Active First Responders\nBreakfast\, Lunch\, & Dinner\n25% off for active first responders in uniform or presenting a valid first responder ID. Offer-qualifying first responders include firefighters\, police officers\, EMTs\, and hospital personnel. Offer is valid on Tuesday\, October 28\, 2025. \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				We have options for every palate!\nMonday dinner features steak\, but you can enjoy your favorite comfort food at the largest buffet in the USA! See our menu for all meals. \n			\n				SEE FULL MENU\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Who qualifies as a first responder?
URL:https://www.shady-maple.com/event/national-first-responder-day/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2024/10/FirstResponder-Featured.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/New_York:20251013T000000
DTEND;TZID=America/New_York:20251013T235900
DTSTAMP:20260421T062829
CREATED:20231002T151018Z
LAST-MODIFIED:20251013T175943Z
UID:10000268-1760313600-1760399940@www.shady-maple.com
SUMMARY:Columbus Day Menu & Pricing
DESCRIPTION:Holiday Menu\nOctober 13th\, 2025 \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				$16.99\n+ 12% service fee \nAdult Breakfast\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				$26.99\n+ 12% service fee \nAdult Lunch & Dinner\n			\n			\n				\n				\n				\n				\n			\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n					\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n			\n			\n\n				\n				\n				\n				\n			\n				\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Breakfast\n7am – 10am\nWatch as your eggs\, omelets\, & pancakes are prepared your way. The buffet includes: scrambled eggs\, sausage\, ham\, scrapple\, bacon\, pancakes\, French toast\, mush\, puddings\, oatmeal\, waffles\, biscuits\, fruit\, cereal\, baked goods\, beverages & more! \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Lunch & Dinner\n11am – 7:30pm\nLast seating is at 7:30pm; food is available 45 minutes after last seating. \nLunch and dinner menu includes featured grill items of Delmonico & NY stip steak\, hickory-smoked beef brisket\, and 46 salad bar items\, 3 soups\, 8 homemade breads & rolls\, 4 cheeses\, 8 meats\, 14 vegetables\, 10 cold desserts\, 3 hot desserts\, 8 pies\, 6 cakes\, sundae bar & many beverages.
URL:https://www.shady-maple.com/event/columbus-holiday-celebration/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2023/08/ShadyMaple-0008-scaled.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20250901
DTEND;VALUE=DATE:20251101
DTSTAMP:20260421T062829
CREATED:20240926T140814Z
LAST-MODIFIED:20250910T155952Z
UID:10000347-1756684800-1761955199@www.shady-maple.com
SUMMARY:Fall Favorites at the Smorgasbord
DESCRIPTION:All your fall favorite treats are here!\nExperience the delightful flavors of fall with our special offerings on the buffet. From homemade pumpkin pie to apple dumplings\, we have everything you crave. Don’t miss out on these seasonal favorites\, including our delicious Lancaster County-sourced apple cider! \n			\n				\n				\n				\n				\n				Get Directions \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				Homemade Pumpkin PieLunch & Dinner \n			\n				\n				\n				\n				\n				\n				\n				\n					\n				\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				Homemade Apple CrispLunch & Dinner \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				Apple CiderMade in Lancaster County \n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				Apple DumplingsLunch & Dinner \n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n					\n					\n						\n						Visit us Today!\n\n  \n   Stay in touch. Give us a follow! \n  \n  \n  \n \n					\n				\n			\n				Contact Us\n			\n			\n				\n				\n				\n				\n			\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n					\n				\n				\n				\n					\n						\n						\n							LOVE SHOPPING?\n\nGet REWARDED For It!\nSign up for our REWARDS PROGRAM and start saving today. \n							SIGN UP
URL:https://www.shady-maple.com/event/fall-favorites-at-the-smorgasbord/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Events,Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2024/09/Fall-Desserts.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20250716
DTEND;VALUE=DATE:20250801
DTSTAMP:20260421T062829
CREATED:20230710T181306Z
LAST-MODIFIED:20250627T153755Z
UID:10000153-1752624000-1754006399@www.shady-maple.com
SUMMARY:Ice Cream Sundae Contest
DESCRIPTION:Sundae Snapshot Showdown!\nWe want to see your most amazing Smorgasbord sundae creations! Get creative with our toppings and show us what you’ve got. \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Here’s how to enter: \nCraft Your Creation: Visit the Smorgasbord and build your ultimate sundae masterpiece. \nSnap a Pic & Share: Take a fantastic picture of your sundae and share it on Instagram! Make sure your account is public so we can see your entry. You’ll need to tag us @shadymaple and use the hashtag #SmorgasbordSundaeShowdown. \nNo Instagram? No Problem! You can still enter for free! Just visit our customer service desk\, fill out a quick form with your name and contact info\, and tell us about your sundae. \nWe’ll randomly draw five lucky winners who will each receive a free Smorgasbord meal on us! The contest runs from July 16th to July 31st\, so get scooping and snapping! \n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				By entering this contest\, you are agreeing to the Official Rules
URL:https://www.shady-maple.com/event/ice-cream-sundae-contest/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Family Fun,Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2023/07/Sundae-Featured.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20250619
DTEND;VALUE=DATE:20250620
DTSTAMP:20260421T062829
CREATED:20250528T200444Z
LAST-MODIFIED:20250617T135127Z
UID:10000366-1750291200-1750377599@www.shady-maple.com
SUMMARY:Juneteenth
DESCRIPTION:Thursday\, June 19th\, 2025\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\nWe will begin our dinner menu and pricing at 10:45 am due to the holiday.  Enjoy our Hot & Cold Steamed Shrimp and Chicken Wings in four tasty flavors. Indulge in BBQ Ribs\, Pulled Pork\, Beef Brisket\, Carved Ham\, Grilled Chicken\, and juicy Steak. Don’t miss out on this delightful dining experience!  \n\n\n\n\n\n\n\n\n\n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				BREAKFAST\n7:00 am – 10:00 am \n$13.99\nAdult Breakfast Price \n\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				LUNCH/DINNER\n10:45 am – 7:30 pm \n$23.99\nAdult Lunch/Dinner Price \n$9.99\nKid’s Lunch/Dinner Price \n\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Plus tax and 12% service fee \n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				Events and Sales\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n					\n				\n					\n					\n					\n						 Dec 01    Smorgasbord SpecialsFresh Flavors are Blooming!
URL:https://www.shady-maple.com/event/juneteenth/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2025/01/IMG_2015-1.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20250601
DTEND;VALUE=DATE:20250901
DTSTAMP:20260421T062829
CREATED:20250515T183404Z
LAST-MODIFIED:20250603T181029Z
UID:10000369-1748736000-1756684799@www.shady-maple.com
SUMMARY:FREE Cake Offer
DESCRIPTION:Sweet Summer Deal – Free Cake with Your Purchase!\nTreat yourself this summer!Visit us on Tuesdays and Wednesdays during June\, July\, and August 2025 and enjoy a FREE 8″ Single Layer Cake with your visit to the Shady Maple Smorgasbord. \nHow to get it: \nSpend $100 or more at the Smorgasbord – receive a coupon for your free cake! \nSpend over $10 at the Farm Market – and get the sweet reward! \nIt’s the perfect way to add a little extra joy to your summer shopping!
URL:https://www.shady-maple.com/event/smorgasbord-special/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2024/04/Cake-scaled.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;VALUE=DATE:20250501
DTEND;VALUE=DATE:20250801
DTSTAMP:20260421T062829
CREATED:20250617T133138Z
LAST-MODIFIED:20250718T113400Z
UID:10000379-1746057600-1754006399@www.shady-maple.com
SUMMARY:Meal Highlight: Rib and Wing Night
DESCRIPTION:Rib & Wing Night at Shady Maple Smorgasbord!\nGet ready for a flavor explosion every Thursday at Shady Maple Smorgasbord’s Rib & Wing Night! Indulge in an all-you-can-eat feast featuring: \n\nFour kinds of hand-tossed wings with our signature sauces\nFresh\, hot BBQ ribs\n\nBut the deliciousness doesn’t stop there! Your meal also includes a wide array of our other popular options\, such as: \n\nHot & Cold Steamed Shrimp\nPulled Pork\nBeef Brisket\nCarved Ham\nGrilled Chicken\nSteak\n\nJoin us for a night of endless flavor! \n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				DINNER\n4:00 pm – 7:30 pm \n$23.99\n+ tax and 12% service fee  \n\n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				We have options for every palate!\nEnjoy your favorite comfort food at the largest buffet in the USA! See our menu for all meals.\n			\n				SEE FULL MENU\n			\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n			\n			\n				\n				\n				\n				\n				\n			\n				\n				\n				\n				\n			\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n				\n					\n				\n					\n					\n					\n						 Dec 01    Smorgasbord SpecialsFresh Flavors are Blooming!
URL:https://www.shady-maple.com/event/thursday-dinner/
LOCATION:Shady Maple Smorgasbord\, 129 Toddy Drive\, East Earl\, PA\, 17519\, United States
CATEGORIES:Smorgasbord
ATTACH;FMTTYPE=image/jpeg:https://www.shady-maple.com/wp-content/uploads/2023/10/WingsFeaturedImage.jpg
END:VEVENT
END:VCALENDAR