Added posts to group page.

This commit is contained in:
K. Nobel
2017-01-30 15:30:08 +01:00
parent aa12e29948
commit 941296802f
2 changed files with 28 additions and 76 deletions

View File

@@ -4,6 +4,8 @@
<?php include("../views/head.php"); ?>
<style>
@import url("styles/profile.css");
@import url("styles/post-popup.css");
@import url('https://fonts.googleapis.com/css?family=Anton');
</style>
</head>
<body>
@@ -30,6 +32,20 @@ include("../views/group.php");
/* This adds the footer. */
include("../views/footer.php");
$masonry_mode = 0;
?>
<script src="js/masonry.js"></script>
<script src="js/post.js"></script>
<script>
$(document).ready(function() {
userID = 0;
groupID = <?= $group["groupID"] ?>;
masonry(<?= $masonry_mode ?>);
});
</script>
</body>
</html>