Blake Street Tavern celebrates last hurrah on Rockies home opening day

The Rockies faithful came out in droves for the team's home opener on Thursday.

Tom Hellauer tom.hellauer@denvergazette.com

On every Rockies home opener day since Blake Street Tavern opened, Michael and Monte Majeres have gone to the sports bar to celebrate. 

After 20 years serving as a loved neighborhood sports bar just a block from Coors Field, Blake Street Tavern will shut its doors for good Sunday. 

040723-dg-news-blakestreet01.JPG

Blake Street Tavern co-general manager Rhiannon Arriaga MacKenzie stands for a portrait in the dining room on Thursday, April 6, 2023, in Denver. It's the last Colorado Rockies opening day for the 20-year-old bar. (Timothy Hurst/Denver Gazette)

Timothy Hurst/Denver Gazette

040723-dg-news-blakestreet01.JPG

Blake Street Tavern co-general manager Rhiannon Arriaga MacKenzie stands for a portrait in the dining room on Thursday, April 6, 2023, in Denver. It’s the last Colorado Rockies opening day for the 20-year-old bar. (Timothy Hurst/Denver Gazette)






“It’s as much a tradition as anything,” Michael Majeres said. “I don’t know what we’re going to do next year.”

The tavern, which opened in 2003, has long been a favorite sports bar in Lower Downtown. After years of celebrating sports and bringing the downtown community together, the tavern announced it was closing on April 9 “to enjoy one last Rockies homestand with everyone,” according to Blake Street Tavern General Managers Shelley Majeres and Rhiannon Arriaga Mackenzie.

On its final Rockies opening day serving sports fans, the tavern was a sea of purple, bustling with baseball fans saying a final goodbye to their beloved sports bar. 

The tavern handed out purple shirts with its logo and “Long live Blake Street Tavern” adorning the back. 

Despite the sadness of the bar shuttering, its fans celebrated the joy and community the bar brought them throughout the years. 

040723-dg-news-blakestreet02.JPG

Blake Street Tavern co-general manager Shelley Majeres talks with patrons in the dining room on Thursday, April 6, 2023, in Denver. It's the last Rockies opening day for the 20-year-old bar, which is closing soon. (Timothy Hurst/Denver Gazette)

Timothy Hurst/Denver Gazette

040723-dg-news-blakestreet02.JPG

Blake Street Tavern co-general manager Shelley Majeres talks with patrons in the dining room on Thursday, April 6, 2023, in Denver. It’s the last Rockies opening day for the 20-year-old bar, which is closing soon. (Timothy Hurst/Denver Gazette)






“It’s always been a welcoming atmosphere,” Michael Majeres said. “Everybody is on the same team and it’s like a family. You end up seeing the same people year-after-year or day-after-day when you come down here.”

Elise Korneffel has worked at the tavern for 10 years, starting there when she was 15. 

“It’s very much a family and I feel like I was raised by a lot of the managers and bartenders here,” Korneffel said. “Denver’s losing a community within the community.”

For the past several weeks, Korneffel has seen plenty of familiar faces, with people who frequent the tavern and those who “haven’t been in in years but it still holds such a special place in their hearts” coming to say goodbye.

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=62&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/DG%20bus%20test%202.png);
background-size: cover;

}

#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: ;
}
#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/DG%20bus%20test%202.png);
background-size: cover;
}
}

Maureen Hogan, who has worked at the tavern for four years, said one old regular even flew in to say goodbye to the tavern one last time. 

“There are a lot of families that were built here, like literal families,” Hogan said. “Countless people have gotten married here and there’s even a baby born named Blake after the tavern.”

Tavern regulars Tracy Ebersbach, Samantha Moore and Bree Shea have come to Blake Street Tavern for every Rockies opening day for the past 10 years. 

The three agree that, in losing Blake Street Tavern, the downtown community is losing “everything.” 

“It’s so sad to see them go, which is why we’re here to support them,” Ebersbach said. “We’re going to miss coming together and having fun, running into everybody, old friends, and having a good time here.”

040723-dg-news-blakestreet03.JPG

Server Natallia Anderson wears a “Long Live Blake St Tavern” t-shirt while bringing water to patrons on Thursday, April 6, 2023, at Blake Street Tavern in Denver. It was the last Rockies opening day for the 20-year-old bar, which is closing soon.(Timothy Hurst/Denver Gazette)

Timothy Hurst/Denver Gazette

040723-dg-news-blakestreet03.JPG

Server Natallia Anderson wears a “Long Live Blake St Tavern” t-shirt while bringing water to patrons on Thursday, April 6, 2023, at Blake Street Tavern in Denver. It was the last Rockies opening day for the 20-year-old bar, which is closing soon.(Timothy Hurst/Denver Gazette)






General Manager Shelley Majeres celebrated her 17-year anniversary of working at the tavern on Rockies home opening day. She will always remember the tavern as a place for traditions, neighborhood friends and unity. 

“Blake Street Tavern opened as the baseball scene downtown really came alive,” Majeres said. “The tavern really helped build that scene and unite people. It really brought people together.”

Management at the tavern is unsure exactly why the tavern is closing. 

The owner, Chris Fuselier, has been out of pocket and chose not to renew the lease, according to Majeres. 

Fuselier has not replied to the Denver Gazette’s multiple requests for comment.

“I think our boss just decided that it was time,” Hogan said. “We had 20 beautiful years and now it’s time. Life changes.” 

Korneffel and Hogan don’t know what the plans for the space are when the tavern moves out, but are excited to see what it will be, they said.

“We’ve put a lot of years into this bar,” Hogan said. “Whoever does buy the space better take care of it.”

d815d340-d4a8-11ed-9d4a-833a74bb0a99

View Original Article | Split View

PREV

PREVIOUS

Climate activists propose Colorado ballot initiative to ban oil and gas drilling by 2030

Facebook Twitter WhatsApp SMS Email Print Copy article link Save A coalition of environmental groups and activists is proposing a Colorado ballot issue to ban all permitting of oil and gas wells after 2030. In a press release, the coalition announced that it has submitted language to the Colorado Legislative Council to place a ballot […]

NEXT

NEXT UP

RTD considers transition to zero emissions facilities, fleet

Facebook Twitter WhatsApp SMS Email Print Copy article link Save A panel within Colorado’s Regional Transportation District will consider transitioning vehicles and buildings to low or zero emissions on Wednesday. The discussion by the transportation district’s Operations and Safety Committee includes the development of a transition feasibility study and a facilities and fleet transition strategy. […]