Today's Digital Newspaper

The Gazette

Weather Block Here



EDITORIAL: Gov. Polis gives up on his bridge

Give Gov. Jared Polis credit for bowing to the public’s will. Facing a broad backlash to his out-of-the-blue brainstorm for a pricey pedestrian bridge west of the State Capitol Building, the governor backed out Tuesday. The stiff opposition — including in a poll Polis’ office conducted — was fully justified.

The project, in fact, made little sense and would have tread on hallowed ground, where monuments long have marked the sacrifices of Colorado’s veterans.

Plans for the $28.5 million bridge, spanning Lincoln Street and connecting the state Capitol to Lincoln Veterans Memorial Park, were announced by the Governor’s Office in November with seemingly no public input or explanation as to what purpose it would serve. The footbridge’s meandering design came across like a daydream of the governor’s — a doodle on a napkin — and met with a resounding, “Huh?” followed by an outcry of opposition.

The Gazette reported this week that the state had allocated $8.5 million in tax dollars to start the project; the balance was supposed to be raised through private donations. The bridge’s planned completion on Aug. 1 of next year was supposed to help mark the state’s 150th anniversary — yet the concept’s actual connection to that observance was anybody’s guess.

As ambitious public-works projects go, it had all the makings of a blunder. And even Polis seemed to be having his doubts lately. That was evident from his office’s hastily contrived online poll this week, belatedly seeking public input.

The poll results unsurprisingly were overwhelmingly negative — 94% of respondents were opposed — but substantive concerns raised by significant state and local stakeholders in recent weeks should have prompted the governor to drop the whole idea even earlier.

As The Gazette reported, a broad coalition of Colorado veterans groups had called on Polis to abandon the project.

A joint statement issued by the Veterans of Foreign Wars, the American Legion, Disabled American Veterans, Paralyzed Veterans of America and the Gold Star Wives of America declared: “Our sacred spaces are not for sale, not for political show, and not to be paved over. They are to be protected as the living legacy of those who served and sacrificed for the freedoms we all enjoy.”

Lincoln Veterans Memorial Park is “more than green space. It is hallowed ground dedicated to the memory of those who served, sacrificed, and, for many, never returned home,” the statement said. It called the bridge unnecessary and disrespectful, a “symbol of disregard” for the sacrifices of veterans and their families, and said any plan to alter or intrude on the space violates the spirit of commitment made by the state to keep the park as a permanent memorial.

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=71&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/gaz%20op%202.png);
background-size: cover;

}

#nsltr-header {
color: #0e0000;
}
#nsltr-body {
text-align: center;
color: #000000;
}
#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/gaz%20op%202.png);
background-size: cover;
}
}

Featured Local Savings

It’s worth noting those same memorial grounds were marred by the summer 2020 riots, and it was the same veterans groups that stepped in to clean up the mess.

Meanwhile, in May, the influential organization Historic Denver denounced the proposal from an aesthetic and architectural perspective.

“It’s a really great, beautiful space. This bridge, we just feel, is very incompatible with those characteristics of symmetry and formality,” Historic Denver President and CEO John Deffenbaugh told The Denver Gazette at the time. “It’s almost the complete opposite.”

Add to those objections the potential for the bridge to become a needless platform for protesters — from which to drape banners, display graffiti and disrupt traffic below — and it would have become not only pointless and disrespectful but also detrimental to the entire area.

Polis, a smart guy by every measure, always has been a big thinker. But this is one bold vision he should have left on the drawing board.

In a news release late Tuesday officially calling off the project amid the pushback, Polis pledged, tongue in cheek, “I will chain myself to the Capitol plaza to prevent (the bridge) from being built and will personally intervene to ensure we listen to Coloradans’ feedback.”

Good to hear. If only he would pivot as readily to heed the public on even more important matters.

the gazette editorial board

3f558d47-11f3-51d6-8f78-91deaef8cc2f

View Original Article | Split View
Tags

PREV

PREVIOUS

EDITORIAL: The wolf symbolizes the state's famous boondoggles

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Facebook Twitter WhatsApp SMS Email Print Copy article link Save Colorado’s wolf restoration program, mandated by the 2020 Proposition 114, has spiraled into a financial boondoggle, costing taxpayers $8 million in five years — greatly exceeding the annual estimates in the General Assembly’s Blue Book. […]

NEXT

NEXT UP

EDITORIAL: Mayor Johnston’s misplaced midterm musings

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Facebook Twitter WhatsApp SMS Email Print Copy article link Save From the start of his political trek years ago in Colorado’s Legislature, Mike Johnston seemed to be the proverbial young man in a hurry. Today, as Denver’s mayor, Johnston still comes across that way even […]