Dine & Discover Evening
Here at the Grand Lodge, every day feels like a getaway. Residents love the amenity-rich resort lifestyle on our 44-acre campus. Experience life here for yourself at our Dine & Discover evening where you’ll meet new friends, enjoy a delicious meal prepared by our executive chef and tour our beautiful community.
Seating is limited. RSVP by August 7 at (402) 781-8816 or HGLreferral@hillcresthealth.com.
// Phone button logic
const phoneButton = document.querySelector(‘.acf-phone-button’);
if (phoneButton && (!phoneButton.getAttribute(‘href’) || phoneButton.getAttribute(‘href’) === ‘tel:’)) {
phoneButton.style.display = ‘none’;
}
// Email button logic
const emailButton = document.querySelector(‘.acf-email-button’);
if (emailButton && (!emailButton.getAttribute(‘href’) || emailButton.getAttribute(‘href’) === ‘mailto:’)) {
emailButton.style.display = ‘none’;
}
});

