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; }
Author
Emily Gatschet
Emily is a senior at Kansas State University majoring in Mass Communications. For summer of 2018, Emily was apart of the tourism staff as an intern.
If you're like me, when driving you choose the route that will get you to your destination the fastest. It becomes a game between you and your GPS, almost as if the estimated time of arrival you're given is more of a number to beat, and every ETA minute shaved off is a sweet victory (don't tell the…
Read More