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: Solar Eclipse
It’s likely you’ve heard people gearing up, prepping, and getting excited for the once in a lifetime event happening April 8, 2024: the Total Solar Eclipse. The last total solar eclipse to cross North America was in 2017, and while Kansas may not be in the path of totality this time, that doesn’t…
Read More