Is there a way to load blog post content via a sidebar nav WITHOUT page reload?

I’m new to Jekyll, and wondering if its possible to have a sidebar nav which loops through blog posts via MD files with Front Matter.
But when you click on a link, it doesn’t do a page reload…

sure, with javascript… jekyll isn’t going to do it for you though. You can build a json file with all your post info and then parse that with JS and have JS do the loading.

I have not done this, but it is possible.

I think in general, the main way to achieve what you want is through JS one way or another - regardless of whether you use jekyll or not.

Awesome, thanks.
I suspected as much, but wasn’t sure if there was a cool jekyll / liquid filter plugin type thing that I was missing out on.

Cheers

George