diff options
| author | Mark Otto <[email protected]> | 2012-12-04 20:30:21 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-12-04 20:30:21 -0800 |
| commit | b3019d7aab877cccf03fda3e6894c0fdaa7330f3 (patch) | |
| tree | 22dfb080401d7efd784a18088e6f474d8a2ffae2 /docs/templates | |
| parent | 9c028ea54b7be6361f1be1e26b5a8a5dd6aa6bb0 (diff) | |
| download | bootstrap-b3019d7aab877cccf03fda3e6894c0fdaa7330f3.tar.xz bootstrap-b3019d7aab877cccf03fda3e6894c0fdaa7330f3.zip | |
add gallery page, fill with a few screenshots to start
Diffstat (limited to 'docs/templates')
| -rw-r--r-- | docs/templates/layout.mustache | 3 | ||||
| -rw-r--r-- | docs/templates/pages/gallery.mustache | 63 |
2 files changed, 66 insertions, 0 deletions
diff --git a/docs/templates/layout.mustache b/docs/templates/layout.mustache index a0479a078..d3ec4d504 100644 --- a/docs/templates/layout.mustache +++ b/docs/templates/layout.mustache @@ -70,6 +70,9 @@ <li class="{{customize}}"> <a href="./customize.html">{{_i}}Customize{{/i}}</a> </li> + <li class="{{gallery}}"> + <a href="./gallery.html">{{_i}}Gallery{{/i}}</a> + </li> </ul> </div> </div> diff --git a/docs/templates/pages/gallery.mustache b/docs/templates/pages/gallery.mustache new file mode 100644 index 000000000..5f07a7f7b --- /dev/null +++ b/docs/templates/pages/gallery.mustache @@ -0,0 +1,63 @@ +<!-- Subhead +================================================== --> +<header class="jumbotron subhead" id="overview"> + <div class="container"> + <h1>{{_i}}Gallery{{/i}}</h1> + <p class="lead">{{_i}}Showcase of sites using Bootstrap.{{/i}}</p> + </div> +</header> + + +<div class="container"> + + <section class="bs-docs-gallery"> + <div class="row"> + <div class="span4"> + <a class="thumbnail" href="https://yourkarma.com"> + <img src="assets/img/example-sites/example-karma.jpg"> + </a> + </div> + <div class="span4"> + <a class="thumbnail" href="http://metrotwit.com"> + <img src="assets/img/example-sites/example-metrotwit.jpg"> + </a> + </div> + <div class="span4"> + <a class="thumbnail" href="http://scriptogr.am"> + <img src="assets/img/example-sites/example-scriptogram.jpg"> + </a> + </div> + <div class="span4"> + <a class="thumbnail" href="http://translate.twttr.com"> + <img src="assets/img/example-sites/example-twitter-translation-center.jpg"> + </a> + </div> + <div class="span4"> + <a class="thumbnail" href="http://soundready.fm"> + <img src="assets/img/example-sites/example-soundready.jpg"> + </a> + </div> + <div class="span4"> + <a class="thumbnail" href="http://breakingnews.com"> + <img src="assets/img/example-sites/example-breakingnews.jpg"> + </a> + </div> + <div class="span4"> + <a class="thumbnail" href="http://desk.com"> + <img src="assets/img/example-sites/example-desk.jpg"> + </a> + </div> + <div class="span4"> + <a class="thumbnail" href="http://jumpstartui.com"> + <img src="assets/img/example-sites/example-jumpstart-ui.jpg"> + </a> + </div> + <div class="span4"> + <a class="thumbnail" href="http://atheycreek.com"> + <img src="assets/img/example-sites/example-athey-creek.jpg"> + </a> + </div> + </div>{{! /.row }} + </section> + +</div>{{! /.container }} |
