We now use inline-flex for the post grid instead of float left.

This commit is contained in:
Kevin Nobel
2017-01-11 15:11:42 +01:00
parent b8e61e641a
commit b4c7bfb1ef
3 changed files with 78 additions and 56 deletions

View File

@@ -1,18 +1,21 @@
<!DOCTYPE html>
<html>
<?php
include("views/head.php");
?>
<body>
<?php
/*
* This view adds the main layout over the screen.
* Header, menu, footer.
*/
include("views/main.php");
<?php
include("views/head.php");
?>
<body>
<?php
/*
* This view adds the main layout over the screen.
* Header, menu, footer.
*/
include("views/main.php");
/* Add your view files here. */
include("views/profile.php");
?>
</body>
/* Add your view files here. */
include("views/profile.php");
/* This adds the footer. */
include("views/footer.php");
?>
</body>
</html>