Update footer to expand grey bar to bottom of page

This commit is contained in:
2020-03-10 07:31:46 +00:00
parent 20bbffd3b5
commit 00c89d770b
66 changed files with 6403 additions and 26 deletions

6
_site/js/article-page.js Normal file
View File

@@ -0,0 +1,6 @@
$(document).ready(function(){
// remove black bar if article has no content
if (! $.trim($(".article-content").html())) {
$(".article-content").hide();
}
});