Flames captain Mikael Backlund to return vs. Stars
Centre Mikael Backlund told reporters at Thursday morning’s skate that he will return to Calgary’s lineup after missing six games with an upper-body injury.

The Calgary Flames will have their captain back as they take the ice against the Dallas Stars.
Centre Mikael Backlund told reporters at Thursday morning’s skate that he will return to Calgary’s lineup after missing six games with an upper-body injury.
Backlund suffered the injury on March 12 against the Vancouver Canucks. He delivered a big hit to Canucks defenceman Victor Mancini and appeared to be in some discomfort afterward.
He logged just 2:58 of ice time over five shifts, his last coming a little more than halfway through the first period.
Backlund has 11 goals and 13 assists in 64 games played this season.
if (!res.ok) { throw new Error('Failed to fetch odds data'); }
const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;
return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }
async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;
const container = document.getElementById(componentId + '-odds'); if (!container) return;
try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }
if (error) { container.innerHTML = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_4279fde741a09350883c1639540166d4', 'NHL', '474ce743-28d5-4ca8-ac5d-29b4e2fdc62f');
The Flames were without Rasmus Andersson at morning skate, but Flames coach Ryan Huska told reporters that Andersson would be available to play the Stars.
Calgary enters play Thursday four points back of the St. Louis Blues for the final wild-card position in the Western Conference with three games in hand.