-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathindex.php
46 lines (39 loc) · 1.74 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
<?php
$course_name = "Natural Language Processing";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title><?php echo $course_name; ?></title>
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/themes/smoothness/jquery-ui.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/quiz.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.min.js" type="text/javascript"></script>
<script src="js/demorun.js" type="text/javascript"></script>
<script src="../js/jquery.blockUI.js" type="text/javascript"></script>
<script type="text/javascript" src="../js/hotkey.js"> </script>
<script>
</script>
</head>
<body>
<header>
<div class="header-img" >
<!--<img src="http://www.stanford.edu/group/identity/images/de_block1.gif" alt="Stanford University logo" height="23" width="21" />-->
<img src="http://identity.stanford.edu/images/de_emb3.gif" alt="Stanford University logo" height="23" width="21" />
</div>
<div class="header-text">
<h1>Stanford University</h1> <h2><?php echo $course_name; ?></h2>
</div>
<div class="other-links">
<a href="https://piazza.com/stanford/winter2012/crypto101" target="forum">Discussion Forums</a>
</div>
</header>
<?php
require_once('syllabus_nav.php');
?>
<div id="import-container">
<iframe id="importer" height="620" width="740" border="0"></iframe>
</div>
</body>
</html>