Templated index.php
This commit is contained in:
47
index.php
Normal file
47
index.php
Normal file
@ -0,0 +1,47 @@
|
||||
<!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 -->
|
||||
<!--<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Righteous">-->
|
||||
<!--<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">-->
|
||||
|
||||
<!-- Stylesheets -->
|
||||
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="dist/css/hd-app.css" />
|
||||
|
||||
<!-- Javascript -->
|
||||
<script type="text/javascript" src="dist/lib/webcomponents-loader.js"></script>
|
||||
|
||||
<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" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<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>
|
Reference in New Issue
Block a user