-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
115 lines (102 loc) · 5.57 KB
/
example.html
File metadata and controls
115 lines (102 loc) · 5.57 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>iRail Summer of Code Bootstrap (from Twitter)</title>
<!-- Le fonts -->
<link href="http://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet" type="text/css" />
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/bootstrap-responsive.css" rel="stylesheet" />
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">iRail</a>
<div class="btn-group pull-right">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<i class="icon-user"></i> Username
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="#">Profile</a></li>
<li class="divider"></li>
<li><a href="#">Sign Out</a></li>
</ul>
</div>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#nothing">This button does nothing!</a></li>
<li><a href="#nolink">Not linked at all.</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="hero-unit">
<h1>iRail Summer of Code</h1>
<p>Hello everyone! You are free to use this template for testing your projects, before designing the real thing. Good luck! If you have questions or suggestions, you can always contact <a href="mailto:miet@irail.be">Miet</a>. I can help you with design and other—not too personal—stuff.</p>
<p><a class="btn btn-primary btn-large">Useless button »</a></p>
</div>
<div class="row-fluid">
<div class="span4">
<h2>What can we do?</h2>
<p>Twitter provides this bootstrap for everyone to use. It is an interesting tool with a lot of possibilities. Easy to use, and flexible enough for your testing. Get to know about the features <a href="http://twitter.github.com/bootstrap/" target="blank">over here</a>.</p>
<p><a class="btn" href="http://irail.be">iRail »</a></p>
</div><!--/span-->
<div class="span4">
<h2>Styling</h2>
<p>To make sure your <code>prototype</code> has the right look and feel, the css has been adjusted to fit the profile. Some images have been added as well, to add that extra touch. If you discover <span class="badge badge-important">a mistake</span> or see something you that has would like to see changed about the lay-out, just give me a <a href="mailto:miet@irail.be">shout</a>!</p>
<p><a class="btn" href="#">View details »</a></p>
</div><!--/span-->
<div class="span4">
<h2>Social Media</h2>
<p>Look at these fancy buttons!</p>
<p>
<a href="#"><div class="btn-long btn-vikingspots"><div class="emblem-vikingspots">Sign in with Viking Spots</div></div></a>
<a href="#"><div class="btn-long btn-foursquare"><div class="emblem-foursquare">Sign in with Foursquare</div></div></a>
<a href="#"><div class="btn-long btn-facebook"><div class="emblem-facebook">Sign in with Facebook</div></div></a>
<a href="#"><div class="btn-long btn-twitter"><div class="emblem-twitter">Sign in with Twitter</div></div></a>
<a href="#"><div class="btn-square btn-vikingspots"><div class="emblem-vikingspots">Viking Spots</div></div></a>
<a href="#"><div class="btn-square btn-foursquare"><div class="emblem-foursquare">Foursquare</div></div></a>
<a href="#"><div class="btn-square btn-facebook"><div class="emblem-facebook">Facebook</div></div></a>
<a href="#"><div class="btn-square btn-twitter"><div class="emblem-twitter">Twitter</div></div></a>
</p>
</div><!--/span-->
</div><!--/row-->
</div><!--/container-->
<hr />
<footer>
<div class="container">
<p>© iRail 2012 <img src="img/favicon.png" id="copyrightimg" /></p>
</div>
</footer>
<!-- Le javascript -->
<script src="js/libs/jquery.js"></script>
<script src="js/libs/bootstrap.js"></script>
</body>
</html>