Marijn csscleanup #43

Merged
11166932 merged 1 commits from marijn-csscleanup into master 2017-01-13 12:04:37 +01:00
8 changed files with 147 additions and 131 deletions

View File

@@ -1,21 +1,24 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<?php <head>
include("views/head.php"); <?php include("views/head.php"); ?>
?> <style>
<body> @import url("styles/adminpanel.css");
<?php </style>
/* </head>
* This view adds the main layout over the screen. <body>
* Header and menu. <?php
*/ /*
include("views/main.php"); * This view adds the main layout over the screen.
* Header and menu.
*/
include("views/main.php");
/* Add your view files here. */ /* Add your view files here. */
include("views/adminpanel.php"); include("views/adminpanel.php");
/* This adds the footer. */ /* This adds the footer. */
include("views/footer.php"); include("views/footer.php");
?> ?>
</body> </body>
</html> </html>

View File

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

View File

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

View File

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

View File

@@ -1,21 +1,24 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<?php <head>
include("views/head.php"); <?php include("views/head.php"); ?>
?> <style>
<body> @import url("styles/search.css");
<?php </style>
/* </head>
* This view adds the main layout over the screen. <body>
* Header and menu. <?php
*/ /*
include("views/main.php"); * This view adds the main layout over the screen.
* Header and menu.
*/
include("views/main.php");
/* Add your view files here. */ /* Add your view files here. */
include("views/search-view.php"); include("views/search-view.php");
/* This adds the footer. */ /* This adds the footer. */
include("views/footer.php"); include("views/footer.php");
?> ?>
</body> </body>
</html> </html>

View File

@@ -1,19 +1,24 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<?php include("views/head.php"); ?> <head>
<body> <?php include("views/head.php"); ?>
<?php <style>
/* @import url("styles/settings.css");
* This view adds the main layout over the screen. </style>
* Header and menu. </head>
*/ <body>
include("views/main.php"); <?php
/*
* This view adds the main layout over the screen.
* Header and menu.
*/
include("views/main.php");
/* Add your view files here. */ /* Add your view files here. */
include("views/settings-view.php"); include("views/settings-view.php");
/* This adds the footer. */ /* This adds the footer. */
include("views/footer.php"); include("views/footer.php");
?> ?>
</body> </body>
</html> </html>

View File

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

View File

@@ -1,21 +1,14 @@
<head> <meta charset="utf-8">
<meta charset="utf-8"> <title>MyHyvesbook+</title>
<title>MyHyvesbook+</title> <!-- Add your javascript files here. -->
<!-- Add your javascript files here. --> <script src="js/jquery.js"></script>
<script src="js/jquery.js"></script> <script src="js/header.js"></script>
<script src="js/header.js"></script> <script src="js/menu.js"></script>
<script src="js/menu.js"></script> <style>
<style> /* Add your css files here. */
/* Add your css files here. */ @import url("styles/main.css");
@import url("styles/main.css"); @import url("styles/font-awesome.css");
@import url("styles/profile.css"); @import url("styles/header.css");
@import url("styles/font-awesome.css"); @import url("styles/menu.css");
@import url("styles/header.css"); @import url("styles/footer.css");
@import url("styles/menu.css"); </style>
@import url("styles/footer.css");
@import url("styles/search.css");
@import url("styles/adminpanel.css");
@import url("styles/chat.css");
@import url("styles/settings.css");
</style>
</head>