25 lines
407 B
PHP
25 lines
407 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php include("views/head.php"); ?>
|
|
<style>
|
|
@import url("styles/profile.css");
|
|
</style>
|
|
</head>
|
|
<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/group.php");
|
|
|
|
/* This adds the footer. */
|
|
include("views/footer.php");
|
|
?>
|
|
</body>
|
|
</html>
|