-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
67 lines (56 loc) · 2.3 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
63
64
65
66
67
<?php
require_once("header.php");
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>INSERT TITLE HERE</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!--replace to min in production-->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<script src="js/jquery-1.9.1.js"></script>
<script src="js/bootstrap.min.js"></script>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-touch-fullscreen" content="yes" />
<!--insert apple icons, here-->
<link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon-114.png" />
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114.png" />
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-144.png" />
<link rel="apple-touch-icon" sizes="144x144" href="apple-touch-icon-144.png" />
</head>
<body>
<ul class="nav nav-tabs" id="navTab">
<li><a href="#content1" data-toggle="tab"><i class="icon-home"></i></a></li>
<li><a href="#content2" data-toggle="tab"><i class="icon-user"></i></a></li>
</ul>
<div class="container">
<div class="tab-content">
<div id="content1" class="tab-pane active">
<ul class="media-list span6">
<li class="media">
<div class="pull-left span2">
<a class="btn btn-block btn-success btn-large" href="#">
Enabled
</a>
<a class="btn btn-block btn-success btn-large" href="#">
Enabled
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Thing for sale</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sed massa quam, a tincidunt purus. Sed eget nulla at tellus consectetur tincidunt id at urna. Donec ac convallis lectus. In ac gravida nibh. Donec sit amet aliquam felis. Curabitur a felis lacus. In in purus dolor. Maecenas dui sem, iaculis et ultrices non, semper non neque. Duis sed odio augue. Nam ipsum libero, egestas vitae gravida nec, lobortis et nibh. Praesent euismod vestibulum augue, ut porttitor est sodales ut.</p>
</div>
</li>
</ul>
</div>
<div id="content2" class="tab-pane">
Content 2 here
</div>
</div> <!--tabcontent-->
</div> <!--container-->
</body>
</html>