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: 4 State Lookout
Located at each of the 4 corners of Kansas is an attraction for visitors... really! If you manage to drive to the extreme ends of each region within Kansas, you'll be near some of the most interesting places you can find in the entire state. If you love nature and observing the contrasting…
Read More