Today's Digital Newspaper

The Gazette

Weather Block Here



Bo Nix ‘deserves the jersey wearers’ as plenty of fans don No. 10 for first day of Broncos training camp

ENGLEWOOD – When avid Broncos fan Brock Steinbach met his buddy Friday to attend the first training camp practice, he was taken aback.

Steinbach, 17, was decked out in a No. 10 Bo Nix jersey as a nod to Denver’s second-year quarterback. He saw Will Nelson, 17, come out of his house wearing a No. 3 Russell Wilson Broncos jersey.

“I hate it,’’ Steinbach said. “It looks ugly. It will stand out a lot.”

Wilson was Denver’s starting quarterback in 2022 and 2023, having a disastrous first season but looking better in his second one. Still, he was released in March 2024, and the Broncos took an $85 million salary-cap hit, which Steinbach called “100% the right move.” Denver then selected Nix with the No. 12 pick in the first round of the draft, and he had a banner rookie year.

Needless to say, that No. 3 Wilson jersey stood out in the stands alongside a sea of Nix jerseys as Denver opened camp at Broncos Park. Let Nelson, like Steinbach, a rising senior at Cherry Creek High School, explain why he wore it.

“That’s the only one I had,’’ he said about a Broncos jersey. “But I’m a Seattle Seahawks fan.”

Wilson had starred wearing No. 3 for the Seahawks from 2012-21. After playing last season with Pittsburgh, he is now with the New York Giants.

Another fan when asked about Nelson wearing a Wilson jersey said with a laugh, “Big mistake.” Nelson said he will be attending a future Broncos practice and instead will wear a Wilson Seahawks jersey.

At last year’s first day of training camp, with Nix battling Jarrett Stidham to be the opening-game starter and eventually winning the job, there were about 50 Nix jerseys sighted among the approximately 2,000 fans on hand.

On Friday, with attendance limited to about 800 fans in bleachers due to ongoing construction at Broncos Park, fan Jim Denning estimated about 100 wore Nix jerseys. Denver outside linebacker Jonathon Cooper sure noticed them.

“He’s definitely becoming a name for sure, but he’s earned that,’’ Cooper said. “He’s earned that just from his work, from his leadership, from being a young guy coming into the league and taking on the pressure like he has and carrying it with great poise. So yes, he definitely deserves the love, definitely deserves the jersey wearers and all that cool stuff.”

Nix last year threw for 3,775 yards and 29 touchdowns. He led the Broncos to a 10-7 mark, their first winning season since 2016, and to the playoffs for the first time since they won Super Bowl 50 in the 2015 season.

IMG_2598.jpg

Broncos fans Steve Merich, left and Jim Denning watch the first day of Broncos training camp on Friday at Broncos Park in Englewood.

Chris Tomasson chris.tomasson@gazette.com

IMG_2598.jpg

Broncos fans Steve Merich, left and Jim Denning watch the first day of Broncos training camp on Friday at Broncos Park in Englewood. 






Sign Up For Free:

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else if (fullPath.includes(‘outtherecolorado’)) {
pathVariable = ‘outtherecolorado’;
pathVariable2 = ‘Out There Colorado Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();
setupFormSubmitListener();

Success! Thank you for subscribing to our newsletter.

function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);

nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}

function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}

function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;

result.innerText = “”;

if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}

function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=59&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});

}

#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;

background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/pp5%20signup%203.png);
background-size: cover;

}

#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}

#successnsltr a {
color: white;
}

.hideblock {
display:none;
}

h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}

@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/pp5%20signup%203.png);
background-size: cover;
}
}

Featured Local Savings

“We’re out of the long dark tunnel,’’ Denning, 62, of Kingsburg, Colo., a season-ticket holder for 40 years, said of the Broncos having had quarterback issues since Peyton Manning retired after the 2015 season. “It was a bad stretch.”

Denning was sitting next to his friend Steve Merich, 58, of Brighton. Merich was wearing a Nix No. 10 T-shirt he got when the Broncos were 0-2 last season, and he was preparing to attend their game at Tampa Bay in Week 3. Nix had a breakout showing in a 26-7 Broncos win, starting a three-game winning streak.

“I wasn’t a believer (before that game), but, boy, he has developed into quite, I’d say, a great quarterback,’’ Merich said.

Michael Huntley, 58, a season-ticket holder from Castle Rock, said he wanted to wait until he saw more of Nix before plopping down a bunch of bucks for a No. 10 jersey. When he saw a good deal on one shortly after the season, he scooped it up for $130 and wore it with pride Friday.

“My son bought one right away last year out of the gate, and I got a (cornerback Patrick Surtain II No. 2) jersey,’’ Huntley said of Adam Huntley, 25, purchasing a throwback Nix jersey before last season for $220. “He said, ‘I’m going all in on Bo Nix,’ and I’m like, ‘Come on, man, ‘That’s pretty risky.’ That was a case of the son led the father.”

Nix looked good during the first day of camp, spreading the ball all over the field to a multitude of receivers. Tight end Evan Engram, signed as a free agent in March, had a strong day catching the ball.

“I’m very impressed with (Nix),’’ Engram said. “(I’m) very blessed to be part of his team and be his teammate.”

IMG_2609.jpg

From left: Evan, Stephanie and Max Muckel at the first day of Broncos training camp on Friday at Broncos Park in Englewood.

Chris Tomasson chris.tomasson@gazette.com

IMG_2609.jpg

From left: Evan, Stephanie and Max Muckel at the first day of Broncos training camp on Friday at Broncos Park in Englewood.
 






Also impressed with Nix is Evan Muckel, 14, of Arvada. He sat in the stands wearing the No. 10 Nix jersey he got for Christmas last year.

“He’s been a a big Bo Nix fan since he came to the franchise,’’ said Evan’s mother, Stephanie Muckel, seated next to him. “He was pretty stoked (when getting it).’’

Also on hand was Evan’s brother Max, who was also wearing a No. 10 Broncos jersey. But it was hand-me-down one he got from Evan with the name on the back of Jerry Jeudy, a wide receiver who wore No. 10 with Denver from 2000-03. Max then revealed he actually is a Kansas City Chiefs fan because, “I like to make my family mad.”

Max at least had the sense not to wear a Chiefs jersey to the first day of training camp. That would have gotten a lot more second glances than a Wilson jersey.

Broncos

Broncos Quarterback Bo Nix warms up with the team during training camp on Friday, July 25, 2025. (Stephen Swofford, Denver Gazette)

Stephen Swofford

Broncos

Broncos Quarterback Bo Nix warms up with the team during training camp on Friday, July 25, 2025. (Stephen Swofford, Denver Gazette)






ffd66684-8e39-4bf2-a53a-3f671e1052d9

View Original Article | Split View
Tags

PREV

PREVIOUS

Rockies shortstop Ezequiel Tovar goes in-depth on difficult season: 'No excuses' amid injuries

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Time is running out for Ezequiel Tovar to fashion a silver lining on what has been a frustrating and injury-filled season. Having logged just 37 games before the Colorado Rockies began a six-game road trip through Baltimore and Cleveland to finish out July, Tovar admitted […]

NEXT

NEXT UP

Broncos OLB Jonathon Cooper embracing leadership role: ‘I feel a big responsibility for it”

Facebook Twitter WhatsApp SMS Email Print Copy article link Save ENGLEWOOD — Jonathon Cooper is speaking his mind and leading by example. The Broncos opened training camp on Friday with multiple sessions of 11-on-11 play without pads. Teammates exchanged verbal jabs across the line of scrimmage. Cooper, a fifth-year linebacker, enjoyed the friendly banter. “You […]