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: Quirky Kansas
An avid hunter’s mind can kick into hunting mode at the slightest provocation at any time. Mine went from thinking of a recent day’s summer heat to day-dreaming of days when the temperature and wind are both at 20, and snow is in the air. It happened when we pulled into Shady Grove Cabins, on the…
Read More