TCN is shedding light on a problem of national proportions….homelessness awareness. TCN and its staff will be collecting new and gently-used adult and children’s coats for their clients in need.
// JavaScript for click-to-flip functionality on touch devices
document.addEventListener('DOMContentLoaded', function() {
const flipCards = document.querySelectorAll('.flip-card');
flipCards.forEach(card => {
card.addEventListener('click', function() {
// Toggle the 'flipped' class on click
this.classList.toggle('flipped');
});
});
});