diff options
| author | Mark Otto <[email protected]> | 2012-02-12 20:07:25 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-12 20:07:25 -0800 |
| commit | 4d1f1f0fc7117b9edae1c1b1c0c2c899ffcd72e3 (patch) | |
| tree | 438acca030fdae89110f5b60bd7ef6acd239e580 | |
| parent | 81d101a6a7195f8575296b19fbf4d36dd145a602 (diff) | |
| download | bootstrap-4d1f1f0fc7117b9edae1c1b1c0c2c899ffcd72e3.tar.xz bootstrap-4d1f1f0fc7117b9edae1c1b1c0c2c899ffcd72e3.zip | |
add typography pattern .page-header to components per #1701
| -rw-r--r-- | docs/assets/bootstrap.zip | bin | 53056 -> 53056 bytes | |||
| -rw-r--r-- | docs/components.html | 25 | ||||
| -rw-r--r-- | docs/templates/pages/components.mustache | 25 |
3 files changed, 38 insertions, 12 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip Binary files differindex d9c4b4c60..402c12594 100644 --- a/docs/assets/bootstrap.zip +++ b/docs/assets/bootstrap.zip diff --git a/docs/components.html b/docs/components.html index ac87f74b5..d0b5de632 100644 --- a/docs/components.html +++ b/docs/components.html @@ -98,7 +98,7 @@ </ul> </li> <li><a href="#labels">Labels</a></li> - <li><a href="#hero">Hero</a></li> + <li><a href="#typography">Typography</a></li> <li><a href="#thumbnails">Thumbnails</a></li> <li><a href="#alerts">Alerts</a></li> <li><a href="#progress">Progress bars</a></li> @@ -1142,15 +1142,15 @@ -<!-- Hero unit +<!-- Typographic components ================================================== --> -<section id="hero"> +<section id="typography"> <div class="page-header"> - <h1>Hero unit <small>Jumbotron for your site's tagline</small></h1> + <h1>Typographic components <small>Page header and hero unit for segmenting content</small></h1> </div> + <h2>Hero unit</h2> <div class="row"> <div class="span4"> - <h2>About</h2> <p>Bootstrap provides a lightweight, flexible component called a hero unit to showcase content on your site. It works well on marketing and content-heavy sites.</p> <h3>Markup</h3> <p>Wrap your content in a <code>div</code> like so:</p> @@ -1173,7 +1173,20 @@ <p><a class="btn btn-primary btn-large">Learn more</a></p> </div> </div> - </div> + </div><!-- /row --> + <h2>Page header</h2> + <div class="row"> + <div class="span4"> + <p>A simple shell for an <code>h1</code> to appropratiely space out and segment sections of content on a page. It can utilize the <code>h1</code>'s default <code>small</code>, element as well most other components (with additional styles).</p> + </div> + <div class="span8"> +<pre class="prettyprint linenums"> +<div class="page-haeder"> + <h1>Example page header</h1> +</div> +</pre> + </div> + </div><!-- /row --> </section> diff --git a/docs/templates/pages/components.mustache b/docs/templates/pages/components.mustache index ec7ba2636..0b55e60f0 100644 --- a/docs/templates/pages/components.mustache +++ b/docs/templates/pages/components.mustache @@ -22,7 +22,7 @@ </ul> </li> <li><a href="#labels">{{_i}}Labels{{/i}}</a></li> - <li><a href="#hero">{{_i}}Hero{{/i}}</a></li> + <li><a href="#typography">{{_i}}Typography{{/i}}</a></li> <li><a href="#thumbnails">{{_i}}Thumbnails{{/i}}</a></li> <li><a href="#alerts">{{_i}}Alerts{{/i}}</a></li> <li><a href="#progress">{{_i}}Progress bars{{/i}}</a></li> @@ -1066,15 +1066,15 @@ -<!-- Hero unit +<!-- Typographic components ================================================== --> -<section id="hero"> +<section id="typography"> <div class="page-header"> - <h1>{{_i}}Hero unit{{/i}} <small>{{_i}}Jumbotron for your site's tagline{{/i}}</small></h1> + <h1>{{_i}}Typographic components{{/i}} <small>{{_i}}Page header and hero unit for segmenting content{{/i}}</small></h1> </div> + <h2>{{_i}}Hero unit{{/i}}</h2> <div class="row"> <div class="span4"> - <h2>{{_i}}About{{/i}}</h2> <p>{{_i}}Bootstrap provides a lightweight, flexible component called a hero unit to showcase content on your site. It works well on marketing and content-heavy sites.{{/i}}</p> <h3>{{_i}}Markup{{/i}}</h3> <p>{{_i}}Wrap your content in a <code>div</code> like so:{{/i}}</p> @@ -1097,7 +1097,20 @@ <p><a class="btn btn-primary btn-large">{{_i}}Learn more{{/i}}</a></p> </div> </div> - </div> + </div><!-- /row --> + <h2>{{_i}}Page header{{/i}}</h2> + <div class="row"> + <div class="span4"> + <p>{{_i}}A simple shell for an <code>h1</code> to appropratiely space out and segment sections of content on a page. It can utilize the <code>h1</code>'s default <code>small</code>, element as well most other components (with additional styles).{{/i}}</p> + </div> + <div class="span8"> +<pre class="prettyprint linenums"> +<div class="page-haeder"> + <h1>{{_i}}Example page header{{/i}}</h1> +</div> +</pre> + </div> + </div><!-- /row --> </section> |
