Today's Digital Newspaper

The Gazette

Weather Block Here



Abandoned ski area in Clear Creek County up for sale

Do you want to own an old Colorado ski area? On the slopes just south of St. Mary’s Glacier in Clear Creek County, one is currently up for sale.

The Slopes at Saint Mary’s Glacier, a 373-acre property on the southern aspect of Kingston Peak and eight miles north of Interstate 70, is listed at $7 million through LIV Sotheby’s International

“It was listed last week and we have seen some interest on it already,” LIV Sotheby’s real estate professional Kristin Michas said. “It’s a land listing and an interesting piece of property.”

Michas said the property at 8821 Fall River Road still has remaining outcroppings from the old ski area on the property and is comprised of 81 individual parcels (78 on-mountain and 3 making up the parking area). 

St Marys Glacier ski area

An old piece of chair lift sits at the base area of the former slopes of St. Mary's Glacier ski area. The Slopes at Saint Mary's Glacier is a 373-acre property listed for sale in St. Mary's, Colorado.

Courtesy: LIV Sotheby's International

St Marys Glacier ski area

An old piece of chair lift sits at the base area of the former slopes of St. Mary’s Glacier ski area. The Slopes at Saint Mary’s Glacier is a 373-acre property listed for sale in St. Mary’s, Colorado. 






The property is on unimproved land, but Micahs said interest in the property so far leads her to think the land will be used similarly to its history.

“Our opinion of it is it will be an outdoor adventure place again,” she said. “(It could) provide summer time facilities for those people too, with shops or a great place for companies to go test equipment.” 

1928 st marys glacier july 4 1928 fashion line up

The Slopes at Saint Mary's Glacier , a 373-acre property on the southern aspect of Kingston Peak and eight miles north of Interstate 70, is listed at $7 million through LIV Sotheby's International .

Courtesy, Colorado Snowsports Museum and Hall of Fame

1928 st marys glacier july 4 1928 fashion line up

The Slopes at Saint Mary’s Glacier, a 373-acre property on the southern aspect of Kingston Peak and eight miles north of Interstate 70, is listed at $7 million through LIV Sotheby’s International






Michas said the potential for the Slopes at Saint Mary’s Glacier could be a sister property to Echo Mountain, which is located on the south side of I-70.

The former ski area had three lifts (one t-bar and two tow ropes), had some temporary facilities and operated from the 1930’s to 1986, when it officially closed permanently. Plans in 2002 to revive the shuttered ski area went nowhere and the property currently sits idle.

“The family-owned-and-operated ski and snowboard resort resembled the same spirit as present-day Echo Mountain Resort and Ski Cooper,” the Slopes at Saint Mary’s Glacier website said. 

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=60&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%20outdoors%20sign%20up.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%20outdoors%20sign%20up.png);
background-size: cover;
}
}

Featured Local Savings

1982/1983 Rates for St. Mary's Glacier Resort

The Slopes at Saint Mary's Glacier , a 373-acre property on the southern aspect of Kingston Peak and eight miles north of Interstate 70, is listed at $7 million through LIV Sotheby's International .

Courtesy: Colorado Snowsports Museum and Hall of Fame

1982/1983 Rates for St. Mary's Glacier Resort

The Slopes at Saint Mary’s Glacier, a 373-acre property on the southern aspect of Kingston Peak and eight miles north of Interstate 70, is listed at $7 million through LIV Sotheby’s International






The property is advertised as a place that “offers boundless building possibilities” including a potential ski and snowboard resort, a commercial recreation destination, a commercial amenities and events locale, or a private estate with 10, 35-acre parcels for private resident use. 

The close proximity to Denver could make the property a locals spot, too: “Saint Mary’s Resort was a convenient alternative to the larger ski resorts further west with high-traffic areas and far steeper ticket prices.” 

Some other selling points about the property include:

  • 181 inches of annual snowfall
  • 1.5 mile roundtrip hike to St. Mary’s Glacier from property base
  • Capacity for a guest services building
  • Established parking lot
  • Access to four-season recreation

The property is zoned for mining (M-1), and medium density residential (R-2) and multi-family residential (R-5), and includes a two-car garage building and electricity. The seller retains the mineral rights.

St Marys Glacier ski area

The Slopes at Saint Mary's Glacier is a 373-acre property listed for sale in St. Mary's, Colorado.

Courtesy: LIV Sotheby's International

St Marys Glacier ski area

The Slopes at Saint Mary’s Glacier is a 373-acre property listed for sale in St. Mary’s, Colorado. 






For more information about The Slopes at Saint Mary’s Glacier, contact Kristin Michas, kmichas@livsir.com or 303-893-3200.

Denver's closest ski area sold to new owners for 'undisclosed' price
Your chance to book a coveted spot at Colorado's 'beach' is days away
Colorado's 'most extreme' ski area acquired by new owners

db3f31d6-6136-11ee-a927-cb76bb13d145

View Original Article | Split View
Tags

PREV

PREVIOUS

Arapahoe Basin begins snowmaking for 2023-24 season

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Arapahoe Basin Ski Area began making snow Saturday, Sept. 23 on High Noon Trail for the 2023-24 ski and riding season on the south side of Loveland Pass outside Keystone, Colorado (Courtesy, Arapahoe Basin Ski Area) Courtesy: Arapahoe Basin Ski Area { “@context”: “https://schema.org”, “@type”: […]

NEXT

NEXT UP

Multiple Colorado ski areas make first snow of the 2023-24 season

Facebook Twitter WhatsApp SMS Email Print Copy article link Save And so it begins in the high country, snowmaking has started at multiple Colorado ski resorts. And a few others received their first flakes overnight Tuesday as well. Loveland Ski Area and Copper Mountain Resort fired up their snow guns overnight, making the first snow […]