2018-03-11 23:42:46 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
|
|
|
|
<title>Happy Dev App</title>
|
|
|
|
|
|
|
|
<!-- Font -->
|
2018-03-12 13:25:28 +00:00
|
|
|
<!--<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Righteous">-->
|
|
|
|
<!--<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">-->
|
2018-03-11 23:42:46 +00:00
|
|
|
|
|
|
|
<!-- Stylesheets -->
|
2018-03-12 13:25:28 +00:00
|
|
|
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
|
|
|
|
<link rel="stylesheet" href="dist/css/hd-app.css" />
|
2018-03-11 23:42:46 +00:00
|
|
|
|
|
|
|
<!-- Javascript -->
|
2018-03-12 13:25:28 +00:00
|
|
|
<script type="text/javascript" src="dist/lib/webcomponents-loader.js"></script>
|
2018-03-11 23:42:46 +00:00
|
|
|
|
2018-03-12 13:25:28 +00:00
|
|
|
<link rel="import" href="dist/lib/ldp-display/ldp-display.html" />
|
|
|
|
<link rel="import" href="dist/lib/ldp-display/ldp-router.html" />
|
|
|
|
<link rel="import" href="dist/lib/ldp-display/ldp-calendar.html" />
|
2018-03-11 23:42:46 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2018-03-17 17:34:32 +00:00
|
|
|
<div id="mainContainer" class="container-fluid">
|
|
|
|
<div class="row pt-3">
|
|
|
|
<?php require_once('src/html/menu.html'); ?>
|
|
|
|
|
|
|
|
<main id="ldp-root" class="col-md-10">
|
|
|
|
<?php require_once('src/html/home.html'); ?>
|
|
|
|
<?php require_once('src/html/members.html'); ?>
|
|
|
|
<?php require_once('src/html/projects.html'); ?>
|
|
|
|
<?php require_once('src/html/groups.html'); ?>
|
|
|
|
<?php require_once('src/html/calendar.html'); ?>
|
|
|
|
<?php require_once('src/html/drive.html'); ?>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--Profil Modal-->
|
|
|
|
<div id="profileDiv" style="display: none;">
|
|
|
|
<ldp-display id="profileDetail" data-fields="profil-modal" set-profil-modal="picture, profil-content" widget-picture="ldp-display-img" set-profil-content="name, languages, country"></ldp-display>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|