Photo: Blair Takahashi/COACHTAK/3DownNation. All rights reserved.
The Winnipeg Blue Bombers have only made one change to their roster ahead of Thursday night’s game against the Edmonton Elks. The team issued its official depth chart on Wednesday morning.
Jaylen Smith has been activated from the one-game injured list after sitting out in Week 2 due to a head injury. He recorded one special teams tackle during the team’s season-opening win over the Calgary Stampeders in Week 1.
The five-foot-ten, 228-pound defender was a second-round pick in the 2025 CFL Draft out of the University of North Texas. He made three defensive tackles and 22 special teams tackles as a rookie, finishing second on the team and tied for fourth league-wide in special teams tackles.
↑ what lands at 3 p.m. daily
3DownNation Newsletter
Latest news, exclusive analysis, and more daily at 3 p.m.
Latest news, exclusive analysis, and more daily at 3 p.m.
as well as our terms of service and
privacy policy.
1900 Rose St, Regina SK S4P 0A9.
In a corresponding move, the team has placed Canadian linebacker Brody Clark on the six-game injured list. The rookie out of York University was a non-participant in practice this week due to a thigh injury and was listed as doubtful. The 24-year-old native of Delta, B.C. made three special teams tackles over two regular-season games to start the year.
Dru Brown, who was acquired from the Ottawa Redblacks via trade on Tuesday, will not dress for the game. He is not listed on Winnipeg’s official roster, which a team spokesperson indicated is because he remains in transit.
Offensive lineman Micah Vanterpool, who was previously on the six-game injured list, has been moved to the reserve roster. Other players who remain on the six-game injured list include receiver Kevens Clercius, defensive linemen De’Shaan Dixon and Tanner Schmekel, linebackers Lane Novak, Jovan Santos-Knox, and Jaiden Woodbey, and defensive backs Cam Allen and Ethan Ball.
The Winnipeg Blue Bombers (1-1) will host the Edmonton Elks (2-0) at Princess Auto Stadium on Thursday, June 25 with kickoff scheduled for 8:30 p.m. EDT. The Elks are coming off an overtime win over the Montreal Alouettes, while the Blue Bombers were on bye.
The weather forecast in Winnipeg calls for a high of 25 degrees and sun. The game will be broadcast on TSN in Canada and CFL+ internationally. Radio listeners can tune in on 880 CHED in Edmonton or 680 CJOB in Winnipeg.
Winnipeg Blue Bombers
‘;
}
function livePill(){return ‘Live Now‘;}
function fmtHeaderDate(startUtc){
return new Date(startUtc).toLocaleDateString(‘en-US’,{timeZone:ET_ZONE,weekday:’long’,month:’long’,day:’numeric’});
}
function readVoteKey(k){
try{var v=localStorage.getItem(VOTE_PREFIX+k);if(v)return v;}catch(e){}
var n=VOTE_PREFIX+k+’=’,cs=document.cookie.split(‘;’);
for(var i=0;i
‘+fin.away+’ – ‘+fin.home+’
Final
‘;
}
if(liv||timeLive){
var ld=liv||{away:0,home:0};
return ‘
‘+ld.away+’ – ‘+ld.home+’
Live
‘;
}
return ‘
VS
‘;
}
function showResults(res,picks,votedSide,aAbbr,hAbbr){
if(!picks)picks={away:0,home:0};
var tot=(picks.away||0)+(picks.home||0);
var ap=tot>0?Math.round(picks.away/tot*100):50,hp=100-ap;
res.innerHTML=’
Your pick: ‘+(votedSide===’away’?aAbbr:hAbbr)+’ ✓
‘
+”
+”
+’
‘+tot.toLocaleString()+’ pick’+(tot!==1?’s’:”)+’
‘;
res.classList.add(‘dn-visible’);
setTimeout(function(){
res.querySelectorAll(‘.dn-pick-bar-fill’).forEach(function(b){b.style.width=b.getAttribute(‘data-pct’)+’%’;});
},50);
}
function initPick(el,key,aAbbr,hAbbr){
var btns=el.querySelector(‘.dn-pick-btns’);
var res=el.querySelector(‘.dn-pick-results’);
var label=el.querySelector(‘.dn-pick-label’);
var ev=getVote(key);
if(ev){
if(label)label.style.display=’none’;
btns.style.display=’none’;
res.innerHTML=”;
res.classList.add(‘dn-visible’);
getPicks(key,function(p){showResults(res,p,ev,aAbbr,hAbbr);});
return;
}
function vote(side){
setVote(key,side);
if(label)label.style.display=’none’;
btns.style.display=’none’;
res.innerHTML=”;
res.classList.add(‘dn-visible’);
castPick(key,side,function(p){showResults(res,p,side,aAbbr,hAbbr);});
}
el.querySelector(‘[data-side=”away”]’).addEventListener(‘click’,function(){vote(‘away’);});
el.querySelector(‘[data-side=”home”]’).addEventListener(‘click’,function(){vote(‘home’);});
}
function logo(slug,name,abbr,logoUrl){
if(logoUrl)return ‘
+’
‘+abbr+’
‘;
return ”;
}
var wrap=document.getElementById(‘dn-picks-widget-games’);
if(!wrap)return;
function renderCards(){
fetchScores(function(){
var visible=getWidgetGames();
var widget=document.querySelector(‘.dn-picks-widget’);
var titleEl=document.querySelector(‘.dn-picks-widget-title’);
var dateEl=document.querySelector(‘.dn-picks-widget-date’);
if(!visible.length){
if(widget)widget.style.display=’none’;
return;
}
if(widget)widget.style.display=”;
var isToday=visible[0].date===todayET();
if(titleEl)titleEl.textContent=widgetTitle(visible.length,isToday);
if(dateEl)dateEl.textContent=fmtHeaderDate(visible[0].startUtc);
var html=””;
visible.forEach(function(g){
var live=isLiveGame(g.startUtc)||!!LIVE_GAMES[g.gameKey];
var closed=isPollClosed(g.startUtc);
html+=’
+’
‘+(live?livePill():”)+formatLocalDateTime(g.startUtc)+’
‘
+’
+’
‘+logo(g.away,g.awayName,g.awayAbbr,g.awayLogo)+’‘+g.awayName+’
‘
+matchMiddle(g.gameKey,isLiveGame(g.startUtc)&&!LIVE_GAMES[g.gameKey])
+’
‘+logo(g.home,g.homeName,g.homeAbbr,g.homeLogo)+’‘+g.homeName+’
‘
+’
‘;
if(closed){
html+=closedPickHtml(g.gameKey,g.awayAbbr,g.homeAbbr,g.awayName,g.homeName);
}else{
html+=’
+’
Pick your winner
‘
+’
‘
+’‘
+’‘
+’
‘
+”
+’
‘;
}
html+=’
‘;
});
wrap.innerHTML=html;
wrap.querySelectorAll(‘.dn-pick:not(.dn-pick-closed)’).forEach(function(el){
initPick(el,el.getAttribute(‘data-key’),el.getAttribute(‘data-aabbr’),el.getAttribute(‘data-habbr’));
});
wrap.querySelectorAll(‘.dn-pick-closed’).forEach(function(el){
initClosedPoll(el,el.getAttribute(‘data-key’),el.getAttribute(‘data-aabbr’),el.getAttribute(‘data-habbr’),el.getAttribute(‘data-aname’),el.getAttribute(‘data-hname’));
});
});
}
renderCards();
setInterval(renderCards,60000);
})();
