-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
62 lines (53 loc) · 1.67 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
$pageTitle = "Home - DataMed";
require_once dirname(__FILE__) . '/config/config.php';
require_once dirname(__FILE__) . '/Model/TrackActivity.php';
?>
<?php include 'views/header.php'; ?>
<style type="text/css">
.popover {
left: 0 !important;
width: 100% !important;
max-width: none !important;
}
.popover.bottom > .arrow {
left: 30px !important;
}
.input-group-addon {
background-color: #58595b;
color: #fff;
}
</style>
<div class="container">
<?php include 'views/index/SearchPanel.php'; ?>
<div class="row">
<div class="col-lg-6 col-md-4">
<?php include "views/index/Statistics.php"; ?>
</div>
<div class="col-lg-6 col-md-4">
<?php include "views/index/Repositories.php"; ?>
</div>
<!--Add most accessed datasets start-->
<div class="col-lg-6 col-md-4">
<?php include "views/index/Datasets.php"; ?>
</div>
<!--Add most accessed datasets end-->
<div class="col-lg-6 col-md-4">
<?php include "views/index/NewFeatures.php"; ?>
</div>
</div>
</div>
<?php include dirname(__FILE__) . "/views/index/PilotProjects.php"; ?>
<div class="container" id="privacy">
<a class='hyperlink' href="privacy.php">Privacy</a>
<br>
<br>
</div>
<?php
/* ==== Page Specific Scripts ==== */
$scripts = [
"./vendor/jquery/jquery.typewatch.js",
"./js/page.scripts/index.js",
];
?>
<?php include dirname(__FILE__) . '/views/footer.php'; ?>