Good Connection Cafe On Location @ Goodwill Store - Miller Lane
Ready to have Lunch and Shop? Visit the Good Connections Mobile Café, Tuesday, June 9 - Friday, June 12, at the Goodwill Store on Miller Lane. Our team is excited to serve you!☀️
Present by
Goodwill Easterseals Miami Valley- Good Connections Mobile Cafe
Date and time
The event starts at: — The event ends at:
Looking for a tasty and affordable lunch in the Vandalia area?
Stop by the Good Connections Cafe Food Truck at the Goodwill Store on Miller Lane!
Open 10-1 Tues-Fri for hamburgers and hot dogs this week!
$(document).ready(function () {
//-----------------------------------------------------------
//
// Share Buttons
//
//-----------------------------------------------------------
//
(function () {
var $el = $('#tpl-4MEE13');
var $facebookBtn = $el.find('.share-link-facebook');
var $twitterBtn = $el.find('.share-link-twitter');
var $linkedinBtn = $el.find('.share-link-linkedin');
var URL = encodeURIComponent(window.location.href);
var TITLE = encodeURIComponent(document.title);
$facebookBtn.on('click', function () {
var facebookUrl = 'https://www.facebook.com/sharer/sharer.php?u=' + URL;
window.open(facebookUrl, '_blank', 'width=600,height=400');
});
$twitterBtn.on('click', function () {
var twitterUrl = 'http://twitter.com/share?url=' + TITLE + '&url=' + URL;
window.open(twitterUrl, '_blank', 'width=600,height=400');
});
$linkedinBtn.on('click', function () {
var linkedinUrl = 'http://www.linkedin.com/cws/share?url=' + URL;
window.open(linkedinUrl, '_blank', 'width=600,height=400');
});
})();
//-----------------------------------------------------------
//
// Add to Calendar Buttons
//
//-----------------------------------------------------------
//
(function () {
//--------------------------------
// Data
//--------------------------------
//
var eventTitle = 'Good Connection Cafe On Location @ Goodwill Store - Miller Lane';
var startDate = '2026-06-09';
var startTime = '10:00 a.m.';
var endDate = '2026-06-19';
var endTime = '1:00 p.m.';
var eventTimeZone = "America/New_York";
var userTimeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
//--------------------------------
// Selector
//--------------------------------
//
var $el = $('#tpl-4MEE13');
var $googleCalendarBtn = $el.find('.google-calendar');
var $appleCalendarBtn = $el.find('.apple-calendar');
var $outlookCalendarBtn = $el.find('.outlook-calendar');
//--------------------------------
// Luxon alias
//--------------------------------
//
var DateTime = luxon.DateTime;
//--------------------------------
// Parse start & end datetime
//--------------------------------
//
var startDateTime = DateTime.fromFormat(startDate + " " + startTime, 'yyyy-MM-dd h:mm a', { zone: eventTimeZone });
var endDateTime = DateTime.fromFormat(endDate + " " + endTime, 'yyyy-MM-dd h:mm a', { zone: eventTimeZone });
//--------------------------------
// Google Calendar
//--------------------------------
//
// Convert to Google Calendar format
//
var startUtcGoogleFormat = startDateTime.toUTC().toFormat("yyyyMMdd'T'HHmmss'Z'");
var endUtcGoogleFormat = endDateTime.toUTC().toFormat("yyyyMMdd'T'HHmmss'Z'");
var googleCalendarURL = 'https://www.google.com/calendar/render?action=TEMPLATE&text=' + encodeURIComponent(eventTitle) +
'&dates=' + startUtcGoogleFormat + '/' + endUtcGoogleFormat +
'&ctz=' + userTimeZone;
// Set the URL to the Google Calendar link
//
$googleCalendarBtn.attr('href', googleCalendarURL);
//--------------------------------
// Apple Calendar (.ics file)
//--------------------------------
//
var startDateAppleFormat = startDateTime.toFormat("yyyyMMdd'T'HHmmss");
var endDateAppleFormat = endDateTime.toFormat("yyyyMMdd'T'HHmmss");
var icsFileContent =
'BEGIN:VCALENDAR\n' +
'VERSION:2.0\n' +
'BEGIN:VEVENT\n' +
'SUMMARY:' + eventTitle + '\n' +
'DTSTART;TZID=' + eventTimeZone + ':' + startDateAppleFormat + '\n' +
'DTEND;TZID=' + eventTimeZone + ':' + endDateAppleFormat + '\n' +
'END:VEVENT\n' +
'END:VCALENDAR';
// Create a blob for the .ics file and set it to the Apple Calendar link
//
var icsBlob = new Blob([icsFileContent], { type: 'text/calendar' });
var appleCalendarURL = URL.createObjectURL(icsBlob);
$appleCalendarBtn.attr('href', appleCalendarURL).attr('download', eventTitle + '.ics');
//--------------------------------
// Outlook Calendar
//--------------------------------
//
var startDateOutlookFormat = startDateTime.toUTC().toFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
var endDateOutlookFormat = endDateTime.toUTC().toFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
var outlookCalendarURL = 'https://outlook.live.com/calendar/0/deeplink/compose?subject=' + encodeURIComponent(eventTitle) +
'&startdt=' + startDateOutlookFormat +
'&enddt=' + endDateOutlookFormat +
'&allday=false' +
'&timezone=' + encodeURIComponent(userTimeZone);
$outlookCalendarBtn.attr('href', outlookCalendarURL);
})();
//-----------------------------------------------------------
//
// Gallery
//
//-----------------------------------------------------------
//
(function () {
var $el = $('#tpl-4MEE13');
var $banner = $el.find('.events-details-banner');
var $gallery = $el.find('.events-details-gallery');
var $galleryItem = $el.find('.gallery-item');
var $host = $el.find('.events-details-host');
var $title = $el.find('.events-details-title');
$galleryItem.length ? $banner.addClass('_mb-10') : $gallery.remove();
$host.length ? $title.addClass('_mb-10') : '';
})();
});
//-----------------------------------------------------------
//
// Change Quantity
//
//-----------------------------------------------------------
//
function changeQuantity($el, $incr, $stock) {
$el = jQuery($el);
var $item = $el.closest('.mwCart-item');
var $qty = $item.find('.mwCart-quantity');
if ($qty.length >= 1) {
if ($incr && $stock <= 0) {
$qty.val(Math.min($qty.val() * 1 + 1));
} else if ($incr) {
$qty.val(Math.min($qty.val() * 1 + 1, $stock));
} else {
$qty.val(Math.max($qty.val() * 1 - 1, 1));
}
}
}