Alumni

Alumni: “Big George” named SEC Offensive Lineman of the Week!

Read article found here: Consistency, thy name is … Big George? Senior sets standard for UK offensive line.
“I’m pretty vocal with my team,” he said. “Having other people see me as being vocal or not, I don’t really care. I want to be real genuine to my teammates, and that’s all I care about. I don’t care about who sees it or what they think about it.”
Awesome Job George! #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 (_) {} })();

Popular Posts