Today's Digital Newspaper

The Gazette

Weather Block Here



Vandalism at Denver Basilica: Priest says lone woman caught on camera spraying red paint

The graphic red spray paint scrawled on the century-old granite and limestone of Cathedral Basilica of the Immaculate Conception may have been drawn by a woman, on her own, in just fifteen minutes. The words “Satan lives here” scrawled across the front brass doors greeted parishioners as they approached the front steps of the iconic downtown Catholic church for 8:30 mass Sunday morning. 

Father Samuel Morehead, who has only been at the Basilica for three months, told The Denver Gazette that church security guards did their rounds at 7 a.m. and then went inside. He thinks the vandalism happened in the daylight between 7:30 and 7:45. When a security guard discovered the slogans and images, the red paint was still wet. 

Denver police halo cameras placed at Logan and Colfax which are focused on the church caught images of a lone tagger, likely a female, and police told Father Morehead that one witness saw it happen. There is no word on an arrest. 

PXL_20211010_170016389.jpg

Three northern Colorado Catholic churches have been vandalized with red spray paint in recent months including the Cathedral Basilica of the Immaculate Conception

Courtesy Father Sam Morehead

PXL_20211010_170016389.jpg

Three northern Colorado Catholic churches have been vandalized with red spray paint in recent months including the Cathedral Basilica of the Immaculate Conception 






Morehead believes Sunday’s pre-mass attack on his church was well-planned.

“This is not a petty act. It’s not a kid in the night tagging the building,” Morehead explained. “This is an attack on us around areas of faith with sacrilegious and grotesquely sexual references.”

It’s his opinion that the perpetrator mapped the route around the building and hopped a fence to tag a tall bronze statue of Pope John Paul II raising a cross in welcome.

PXL_20211010_170049350.jpg

The pedestal and brass statue of Pope John Paul II was also spray painted.

Courtesy Father Sam Morehead

PXL_20211010_170049350.jpg

The pedestal and brass statue of Pope John Paul II was also spray painted. 






There was plenty of destruction done to the striking historic building during last summer’s riots, which Morehead said cost $70,000 to repair. But in the last three months, the 110-year-old church has been attacked three times. “It’s been a tough summer,” said Morehead. 

The Basilica is not alone. In September, someone sprayed nasty messages on the buildings and nearby cars at Boulder’s Sacred Heart of Mary Catholic Church. Two weeks before that, vandals struck the St. Louis Catholic Church 11 miles to the southeast in Louisville. 

St. Louis Church secretary Lori Domenico said the paint was quickly removed, “The community got together and cleaned the brick with power washers.” She added that there is speculation the two attacks were done by the same group because the messages were similar and both churches were dotted with red raging remarks. 

The Archdiocese of Denver reports that 25 parishes or ministry locations in Northern Colorado have been targets of vandalism, property destruction or theft since February 2020. In a statement, the Archdiocese said, “This has included broken windows, damaged and defaced statues, graffiti, attempted arson, vehicle damage, stolen religious items, and other break-ins and thefts.”

Almost half of those incidents have happened in the last six months.

Cleaning up the mess

Sunday afternoon, a group of parishioners and a downtown business association helped powerwash the granite, limestone and brass of red swastikas, KKK’s and nasty words from Denver’s Basilica. In 36 hours, Morehead has become somewhat of a church CSI aficionado, noting that both the handwriting and red paint on all three Catholic churches, from Boulder to Louisville to Denver, is similar. He added that the tagger spelled everything correctly, including the word “Illuminati” complete with a picture of an eye in a triangle. “This person reads Dan Brown novels,” he deducted.

All kidding aside, Morehead wants the person who ravished his church brought to justice.

“I can forgive, yes, but with responsibility,” he said. “We have to make sure we have healthy boundaries and hold each other responsible. We want this to stop.” 

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 {
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();

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=69&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%20weekly%207.png);
background-size: cover;

}

#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#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%20weekly%207.png);
background-size: cover;
}
}

09bba77a-2ae2-11ec-97be-1fa6be787960

View Original Article | Split View

PREV

PREVIOUS

Pedestrian killed in hit-and-run crash in Wheat Ridge; driver arrested

Facebook Twitter WhatsApp SMS Email Print Copy article link Save A pedestrian was killed in Wheat Ridge on Monday after being struck by a driver who fled the scene of the crash, the Wheat Ridge Police Department said. Police said the crash happened at 1:15 p.m. at West 32nd Avenue and Youngfield Street. The pedestrian, […]

NEXT

NEXT UP

Armed man under red flag order arrested after several-hour standoff in Aurora

Facebook Twitter WhatsApp SMS Email Print Copy article link Save An armed suspect prohibited from possessing firearms was arrested in Aurora on Sunday evening following a lengthy standoff, the Aurora Police Department announced. Christopher Gott was arrested for violating an extreme risk protection order and will be charged with multiple weapons violations due to his […]