Football
West Football Falls to Lakota East 36-3. (Video)
Article found at wcpo.com
Summary by Bob Ashby:
West took a lead late in the first quarter when Nicklas Hjort split the uprights with a 42-yard field goal. East took the lead early in the second quarter and steadily pulled away. West’s Silas Walters was the game-high tackler with 8 (2 solos, 6 assists)
NEXT GAME: HOME VS. PRINCETON AT 7 PM
Pictures by Lou Spinazzola
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 (_) {} })();