Are the 5 featured posts in the hero sorted the same way as the top 5 posts in the main list of posts ? You should be able to offset the loop by 5 posts somehow, but at very least you could hide the top 5 posts in the list view with css (kind of dirty, but better then repetition). Really nice work though !
Also, it looks like if the sidebar tags area is expanded, and the screen viewport isn't super tall, you get some nasty overlap: http://i.imgur.com/xB5CMwQ.png
Since your sidebar's search bar is about 60px tall (with margins), and your calendar is about 250px tall (with margins), you could give your .sidebar-categories-expanded class a height of calc(100vh - 310px) and overflow-y: auto. There are probably more graceful approaches out there, but it's a start :)
Are the 5 featured posts in the hero sorted the same way as the top 5 posts in the main list of posts ? You should be able to offset the loop by 5 posts somehow, but at very least you could hide the top 5 posts in the list view with css (kind of dirty, but better then repetition). Really nice work though !
Also, it looks like if the sidebar tags area is expanded, and the screen viewport isn't super tall, you get some nasty overlap: http://i.imgur.com/xB5CMwQ.png
Since your sidebar's search bar is about 60px tall (with margins), and your calendar is about 250px tall (with margins), you could give your
.sidebar-categories-expanded
class a height ofcalc(100vh - 310px)
andoverflow-y: auto
. There are probably more graceful approaches out there, but it's a start :)