forked from robertcedwards/gh-pages-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (60 loc) · 2.04 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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>My GitHub project</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<!--[if lt IE 9]><script type='text/javascript' src='assets/javascript/html5.js'></script><![endif]-->
<script type='text/javascript' src='assets/javascript/prettify.js'></script>
<link rel='stylesheet' type='text/css' href='assets/css/style.css' />
<link rel='stylesheet' type='text/css' href='assets/css/bootstrap.css' />
<link rel='stylesheet' type='text/css' href='assets/css/prettify.css' />
</head>
<body onload='prettyPrint()'>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">Your Project!</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
</ul>
</div><!-- /.nav-collapse -->
</div>
</div><!-- /navbar-inner -->
</div>
<div class='row-fluid'>
<div class='hero-unit'>
<header>
<h1 class=''>Your Project Title</h1>
</header>
<p>This is a Hero unit with a button!
<a href='https://github.com/USER/REPOSITORY/zipball/master' class='btn btn-large'>
Download
<span>Latest version from GitHub</span>
</a> </p>
<h2>Explaination:</h2>
<p>Here's some room to explain your awesome project!</p>
<hr class="soften">
<span class="label label-important">How about a code example:</span>
<pre class='prettyprint'>
<script>
function display_awesomeness();
{
alert("Awesomeness!");
}
</script>
<form>
<input type="button" value="Click me!" onclick="display_awesomeness()" />
</form>
</pre>
</div>
<footer class="span12">
<div class="alert">
Made by You!
</div>
</footer>
</div>
<a href='https://github.com/USER/REPOSITORY' class='github-ribbon'><img src='assets/images/github-ribbons/red.png' /></a>
</div>
</body>
</html>