Football
Mark Your Calendars: Football Player/Parent Meeting on February 27th!
Attention all football players in the Lakota District. The Lakota West Football Program will be having a mandatory Parent/Player meeting on Wednesday, February 27th, 2019 for rising 9th-12th graders as of the (fall of 2019). The meeting will be held in the Cafeteria at Lakota West High School at 6:00 PM. ALL players interested in information are required to attend with a parent. You will receive information about workouts and upcoming events for the 2019 season. Please contact Coach Bolden at tom.bolden@lakotaonline.com for all other questions. #WestPride
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 (_) {} })();