-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
51 lines (38 loc) · 1.65 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
<?php include 'config.php' ?>
<!DOCTYPE HTML>
<html lang="en" xmlns:fb="http://ogp.me/ns/fb#">
<head>
<base href="<?php echo $SITE_URL ?>">
<?php
$override_labels = array(
"title" => "Open Knowledge Maps - A visual interface to the world's scientific knowledge"
, "description" => "Start your literature search here: get an overview of a research topic, find relevant papers, and identify important concepts."
);
?>
<?php include($COMPONENTS_PATH . 'head_bootstrap.php'); ?>
<?php include($COMPONENTS_PATH . 'head_standard.php'); ?>
<?php include($COMPONENTS_PATH . 'head_headstart.php') ?>
</head>
<body id="home">
<?php include($COMPONENTS_PATH . 'header.php'); ?>
<?php
$default_lib = "base";
if (isset($_GET["lib"])) {
$default_lib = $_GET["lib"];
}
?>
<a name="top"></a>
<a style="padding-top:160px;" name="search"></a>
<?php include($COMPONENTS_PATH . 'search-box.php') ?>
<span class="anchor" id="okmmission"></span>
<?php include($COMPONENTS_PATH . 'mission.php') ?>
<?php include($COMPONENTS_PATH . 'featuredin.php') ?>
<span class="anchor" id="feedback"></span>
<?php
$TIMELINE_ID = "733358003295035393";
$FEEBDACK_TITLE = "What our users say";
include($COMPONENTS_PATH . 'twitterstream.php')
?>
<?php include($COMPONENTS_PATH . 'supportus.php') ?>
<?php include($COMPONENTS_PATH . 'newsletter.php') ?>
<?php include($COMPONENTS_PATH . 'footer.php'); ?>