I am using github to host a static site and Jekyll to generate it.
I have a menu bar (as
) and would like the correspo
Similar to @ben-foster's solution but without using any jQuery
I needed something simple, this is what I did.
In my front matter I added a variable called active
e.g.
---
layout: generic
title: About
active: about
---
I have a navigation include with the following section
This works for me as the amount of links in the navigation are very narrow.