to identify if we are on blog index or detail page.
When on detail page: On page load, the header slideshow is hidden, allowing
for JS at bottom of page to update the image and then show main image in
header slideshow without flashing content while image is updated.
*/
var el = document.querySelector('body');
var className = false ? "blog-detail" : "blog-index";
if (el.classList) { el.classList.add(className); }
else { el.className += " " + className; }
Tag: Social Distancing
As I’ve gotten older I have seen first hand how history tends to repeat itself. In day-to-day life we mostly see it through recycled fashion trends (looking at you choker necklaces, color tinted sunglasses, fringe and ultra high-waisted pants) but now 2020 has brought us the revival of drive-in…
Read More