1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00

add bootstrap

This commit is contained in:
Bolero-MURAKAMI 2013-08-21 19:40:28 +09:00
parent f9472c5100
commit 224c3a179a
9 changed files with 9636 additions and 21 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

6167
assets/bootstrap/css/bootstrap.css vendored Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

2280
assets/bootstrap/js/bootstrap.js vendored Normal file

File diff suppressed because it is too large Load diff

6
assets/bootstrap/js/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -9,28 +9,63 @@
<meta name="keywords" content="中3女子" /> <meta name="keywords" content="中3女子" />
<meta name="description" content="中3女子" /> <meta name="description" content="中3女子" />
<meta name="Author" content="Bolero MURAKAMI" /> <meta name="Author" content="Bolero MURAKAMI" />
<link rel="stylesheet" type="text/css" href="assets/bootstrap/css/bootstrap.min.css" media="screen, projection" />
<link rel="stylesheet" type="text/css" href="assets/bootstrap/css/bootstrap-responsive.css" media="screen, projection" />
<script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
<script type="text/javascript" src="./js/bootstrap.min.js"></script>
</head> </head>
<body> <body>
<h1>Sprout C++ Libraries</h1> <div class="navbar navbar-inverse navbar-fixed-top">
<p>C++11 constexpr based Containers, Algorithms, Random numbers, Parsing, Ray tracing, Synthesizer, and others.</p> <div class="navbar-inner">
<ul> <div class="container">
<li><p><a href="https://github.com/bolero-MURAKAMI/Sprout/" target="_blank">Project page</a></p></li> <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<li><p><a href="./docs/index.html">Documents</a></p></li> <span class="icon-bar"></span>
</ul> <span class="icon-bar"></span>
<h2>Author</h2> <span class="icon-bar"></span>
<p>Bolero MURAKAMI <a href="mailto:contact-lib@boleros.x0.com">(E-Mail)</a></p> </button>
<ul> <a class="brand" href="#">Bolero's website</a>
<li> <div class="nav-collapse collapse">
<p> <ul class="nav">
<a href="https://twitter.com/bolero_MURAKAMI" target="_blank">Twitter</a> | <li><a href="http://bolero-murakami.github.io/">Home</a></li>
<a href="http://www.facebook.com/genya.murakami" target="_blank">Facebook</a> | <li class="active"><a href="#">Sprout C++ Libraries</a></li>
<a href="http://d.hatena.ne.jp/boleros/" target="_blank">Hatena (Blog)</a> | </ul>
<a href="https://github.com/bolero-MURAKAMI" target="_blank">Github</a> | </div>
<a href="http://www.slideshare.net/GenyaMurakami" target="_blank">SlideShare</a> </div>
</p> </div>
</li> </div>
</ul>
<p>Copyright (C) 2013 Bolero MURAKAMI.</p> <div class="container" style="padding-top: 60px; padding-bottom: 40px;">
<div class="hero-unit">
<h1>Sprout C++ Libraries</h1>
<p>C++11 constexpr based Containers, Algorithms, Random numbers, Parsing, Ray tracing, Synthesizer, and others.</p>
<div class="row">
<p>
<a href="./docs/index.html" class="btn btn-primary btn-large">Documentation &raquo;</a>
<a href="https://github.com/bolero-MURAKAMI/Sprout/" class="btn btn-primary btn-large" target="_blank">Project page (Github) &raquo;</a>
</p>
</div>
</div>
<h3>Author</h3>
<p>Bolero MURAKAMI <a href="mailto:contact-lib@boleros.x0.com">(E-Mail)</a></p>
<div class="row">
<div class="span6">
<table class="table">
<tbody>
<tr>
<td><a href="https://twitter.com/bolero_MURAKAMI" target="_blank">Twitter</a></td>
<td><a href="http://www.facebook.com/genya.murakami" target="_blank">Facebook</a></td>
<td><a href="http://d.hatena.ne.jp/boleros/" target="_blank">Hatena (Blog)</a></td>
<td><a href="https://github.com/bolero-MURAKAMI" target="_blank">Github</a></td>
<td><a href="http://www.slideshare.net/GenyaMurakami" target="_blank">SlideShare</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="footer">
<p class="muted credit">Copyright (C) 2013 Bolero MURAKAMI.</p>
</div>
</div>
</body> </body>
</html> </html>