-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (127 loc) · 4.92 KB
/
index.html
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="utf-8" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- Use the .htaccess and remove these lines to avoid edge case issues.
More info: h5bp.com/i/378 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- Our site title and description -->
<title>Home | Your Website</title>
<meta name="description" content="When your website appears in search results in say Google, the text here will be shown underneath your website's title." />
<meta name="keywords" content="place, your, website, keywoards, here, keep, them, related, to, the, content, of, your, website" />
<meta name="author" content="Your Name" />
<!-- Output DocPad produced meta elements -->
<meta name="generator" content="DocPad v6.64.0" />
<!-- Mobile viewport optimized: h5bp.com/viewport -->
<meta name="viewport" content="width=device-width" />
<!-- Icons -->
<link rel="shortcut icon" href="images/icons/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/icons/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/icons/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/icons/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/icons/apple-touch-icon-57-precomposed.png">
<!-- Shims: IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script async src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Styles -->
<link rel="stylesheet" href="/styles/twitter-bootstrap.css" /><link rel="stylesheet" href="/styles/style.css" />
</head>
<body>
<!-- Menu -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Project name</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li
typeof="sioc:Page"
about="/pages/hello"
class=""
>
<a href="/pages/hello" property="dc:title">
This is a Page
</a>
</li>
<li
typeof="sioc:Page"
about="/pages/anotherlink"
class=""
>
<a href="/pages/anotherlink" property="dc:title">
Another link
</a>
</li>
<li
typeof="sioc:Page"
about="/pages/posts"
class=""
>
<a href="/pages/posts" property="dc:title">
Posts
</a>
</li>
<li
typeof="sioc:Page"
about="/pages/userguides"
class=""
>
<a href="/pages/userguides" property="dc:title">
User guides
</a>
</li>
</ul>
</div><!--/.navbar-collapse -->
</div>
</div>
<!-- Content -->
<div class="container">
<!-- Content -->
<section id="content" class="content">
<!-- Primary marketing message or call to action -->
<div class="jumbotron">
<h1>Welcome to your new site!</h1>
<p>
We've copied over the
<a href="https://github.com/docpad/twitter-bootstrap.docpad">
Bootstrap Skeleton
</a>
for you already, which is what you're currently viewing.
Step through the guide below and we'll walk you through the process of working with your first docpad website :-)
</p>
</div>
<!-- Example row of columns -->
<div class="row" class="text-center">
<div class="col-lg-6">
<h2>Docpad</h2>
<p>DocPad takes that good ol' simple approach of writing files and wraps it with the best modern innovations, providing an awesome intuitive, liberating and empowering solution for HTML5 web development.</p>
<p><a class="btn btn-default" href="https://github.com/bevry/docpad">Visit Website</a></p>
</div>
<div class="col-lg-6">
<h2>Bootstrap</h2>
<p>Bootstrap is a toolkit designed to kickstart development of webapps and sites. It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.</p>
<p><a class="btn btn-default" href="http://twitter.github.com/bootstrap/">Visit Website</a></p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p class="pull-left">© Company 2014</p>
<p class="pull-right">
This website was last updated at 2014-04-02T13:14:42.156Z
</p>
</footer>
</div><!-- /container -->
<!-- Scripts -->
<script defer="defer" src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script><script defer="defer" src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script><script defer="defer" src="/vendor/twitter-bootstrap/dist/js/bootstrap.min.js"></script><script defer="defer" src="/scripts/script.js"></script>
</body>
</html>