Update blog

– use codepen for this shit
/* For specific blog post demo */
$(‘#navi-example li a’).hover(function(){
var w = $(this).width()+40;
var z = (($(this).width())/2)+20;

$(this).after(‘

‘);

$(this).before(‘

‘);
}, function(){
$(‘.hover-bottom’).remove();
});

– add js that toggles active state on buttons when on sub page
– add hover on all images that link to something, not just on home page

– Add a custom field in Post that is a dropdown with all the other posts. Use the fuzzy search chosen js. In the single.php, check if the a value is selected in the dropdown, then lazyload the related post at the bottom of the current post when user scrolls close enough to it.