Alumni
Alumni: Brandon Giltrow launches a 3 run bomb in win over the Golden Grizzlies!
Article found at wsuraiders.com
Awesome Job Brandon, Lakota West Class of 2015!
Giltrow was a member of the 2015 GMC championship team
and also an all GMC honoree at the catcher position.
#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 (_) {} })();