- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
Latest commit
36 lines (21 loc) · 635 Bytes
/
Copy pathindex.php
File metadata and controls
36 lines (21 loc) · 635 Bytes
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
<?phprequire_once('cimsy.php'); ?>
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="robots" content="noindex, follow" />
<title><?get_title(); ?></title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet"/>
<link href="custom_styles.css" rel="stylesheet"/>
</head>
<body>
<br/>
<div class="container">
<div class="row">
<div id="content" class="span12">
<?phpget_content(); ?>
</div>
</div> <!-- .row -->
</div> <!-- .container -->
</body>
</html>