-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
55 lines (44 loc) · 1.62 KB
/
index.php
File metadata and controls
55 lines (44 loc) · 1.62 KB
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
<?php
include 'config.php';
?><!DOCTYPE html>
<html>
<head>
<!-- Meta -->
<meta charset="utf-8">
<title><?php echo $html_title; ?></title>
<!-- Blueprint CSS Framework (0.8) -->
<link rel="stylesheet" href="blueprint/screen.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="blueprint/print.css" type="text/css" media="print" />
<!--[if IE]>
<link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection" />
<![endif]-->
<!-- Styles -->
<link rel="stylesheet" href="css/twilight.css" type="text/css" media="screen, projection" charset="utf-8" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen, projection" charset="utf-8" />
<!-- Scripts -->
<script src="js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.pageslide.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/markdownorial.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<!-- Table of Contents Link -->
<img id="toc" src="images/transparent.png" alt="Table of Contents" title="Table of Contents" />
<!-- Header and Gradient -->
<div id="header" class="center last alt">
<h1><?php echo $tutorial_title; ?></h1>
</div>
<div id="header-grad1"> </div>
<div id="header-grad2"> </div>
<div id="header-grad3"> </div>
<!-- Wrapper and Content -->
<div id="wrapper">
<div id="container" class="container">
<div class="push-3 span-18 last" id="content">
<?php include 'content.html' ?>
</div>
</div>
</div>
<!-- Footer -->
<?php include 'footer.php' ?>
</body>
</html>