add post viewing basis, add insert post and comment queries

This commit is contained in:
Hendrik
2017-01-24 16:56:04 +01:00
parent f6051ee14f
commit b9fc016f7d
7 changed files with 208 additions and 1 deletions

View File

@@ -73,4 +73,12 @@ function mansonry() {
}
$("div.posts div.column").width(100/columnCount + "%");
$(".post").click(function () {
$(".modal").show();
});
$(".modal-close").click(function () {
$(".modal").hide();
});
}