From be5f31480b53555c492e0077c8bb9f419fc48f62 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 5 Dec 2012 11:09:02 -0800 Subject: Nuke all i18n tags from .mustache templates --- docs/templates/pages/css.mustache | 1012 ++++++++++++++++++------------------- 1 file changed, 506 insertions(+), 506 deletions(-) (limited to 'docs/templates/pages/css.mustache') diff --git a/docs/templates/pages/css.mustache b/docs/templates/pages/css.mustache index fde94120e..cf9902519 100644 --- a/docs/templates/pages/css.mustache +++ b/docs/templates/pages/css.mustache @@ -2,8 +2,8 @@ ================================================== -->
-

{{_i}}CSS{{/i}}

-

{{_i}}Fundamental HTML elements styled and enhanced with extensible classes.{{/i}}

+

CSS

+

Fundamental HTML elements styled and enhanced with extensible classes.

@@ -15,16 +15,16 @@
@@ -35,11 +35,11 @@ ================================================== -->
-

{{_i}}Requires HTML5 doctype{{/i}}

-

{{_i}}Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.{{/i}}

+

Requires HTML5 doctype

+

Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.

 <!DOCTYPE html>
 <html lang="en">
@@ -47,18 +47,18 @@
 </html>
 
-

{{_i}}Typography and links{{/i}}

-

{{_i}}Bootstrap sets basic global display, typography, and link styles. Specifically, we:{{/i}}

+

Typography and links

+

Bootstrap sets basic global display, typography, and link styles. Specifically, we:

    -
  • {{_i}}Remove margin on the body{{/i}}
  • -
  • {{_i}}Set background-color: white; on the body{{/i}}
  • -
  • {{_i}}Use the @font-family-base, @font-size-base, and @line-height-base attributes as our typographic base{{/i}}
  • -
  • {{_i}}Set the global link color via @link-color and apply link underlines only on :hover{{/i}}
  • +
  • Remove margin on the body
  • +
  • Set background-color: white; on the body
  • +
  • Use the @font-family-base, @font-size-base, and @line-height-base attributes as our typographic base
  • +
  • Set the global link color via @link-color and apply link underlines only on :hover
-

{{_i}}These styles can be found within scaffolding.less.{{/i}}

+

These styles can be found within scaffolding.less.

-

{{_i}}Reset via Normalize{{/i}}

-

{{_i}}With Bootstrap 2, the old reset block has been dropped in favor of Normalize.css, a project by Nicolas Gallagher and Jonathan Neal that also powers the HTML5 Boilerplate. While we use much of Normalize within our reset.less, we have removed some elements specifically for Bootstrap.{{/i}}

+

Reset via Normalize

+

With Bootstrap 2, the old reset block has been dropped in favor of Normalize.css, a project by Nicolas Gallagher and Jonathan Neal that also powers the HTML5 Boilerplate. While we use much of Normalize within our reset.less, we have removed some elements specifically for Bootstrap.

@@ -68,11 +68,11 @@ ================================================== -->
-

{{_i}}Live grid example{{/i}}

-

{{_i}}The default Bootstrap grid system utilizes 12 columns, making for a 940px wide container without responsive features enabled. With the responsive CSS file added, the grid adapts to be 724px and 1170px wide depending on your viewport. Below 767px viewports, the columns become fluid and stack vertically.{{/i}}

+

Live grid example

+

The default Bootstrap grid system utilizes 12 columns, making for a 940px wide container without responsive features enabled. With the responsive CSS file added, the grid adapts to be 724px and 1170px wide depending on your viewport. Below 767px viewports, the columns become fluid and stack vertically.

1
@@ -102,18 +102,18 @@
-

{{_i}}Basic grid HTML{{/i}}

-

{{_i}}For a simple two column layout, create a .row and add the appropriate number of .span* columns. As this is a 12-column grid, each .span* spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent).{{/i}}

+

Basic grid HTML

+

For a simple two column layout, create a .row and add the appropriate number of .span* columns. As this is a 12-column grid, each .span* spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent).

 <div class="row">
   <div class="span4">...</div>
   <div class="span8">...</div>
 </div>
 
-

{{_i}}Given this example, we have .span4 and .span8, making for 12 total columns and a complete row.{{/i}}

+

Given this example, we have .span4 and .span8, making for 12 total columns and a complete row.

-

{{_i}}Offsetting columns{{/i}}

-

{{_i}}Move columns to the right using .offset* classes. Each class increases the left margin of a column by a whole column. For example, .offset4 moves .span4 over four columns.{{/i}}

+

Offsetting columns

+

Move columns to the right using .offset* classes. Each class increases the left margin of a column by a whole column. For example, .offset4 moves .span4 over four columns.

4
@@ -135,17 +135,17 @@ -

{{_i}}Nesting columns{{/i}}

-

{{_i}}To nest your content with the default grid, add a new .row and set of .span* columns within an existing .span* column. Nested rows should include a set of columns that add up to the number of columns of its parent.{{/i}}

+

Nesting columns

+

To nest your content with the default grid, add a new .row and set of .span* columns within an existing .span* column. Nested rows should include a set of columns that add up to the number of columns of its parent.

- {{_i}}Level 1 column{{/i}} + Level 1 column
- {{_i}}Level 2{{/i}} + Level 2
- {{_i}}Level 2{{/i}} + Level 2
@@ -153,10 +153,10 @@
 <div class="row">
   <div class="span9">
-    {{_i}}Level 1 column{{/i}}
+    Level 1 column
     <div class="row">
-      <div class="span6">{{_i}}Level 2{{/i}}</div>
-      <div class="span3">{{_i}}Level 2{{/i}}</div>
+      <div class="span6">Level 2</div>
+      <div class="span3">Level 2</div>
     </div>
   </div>
 </div>
@@ -170,24 +170,24 @@
         ================================================== -->
         
{{! Headings }} -

{{_i}}Headings{{/i}}

-

{{_i}}All HTML headings, <h1> through <h6> are available.{{/i}}

+

Headings

+

All HTML headings, <h1> through <h6> are available.

-

h1. {{_i}}Heading 1{{/i}}

-

h2. {{_i}}Heading 2{{/i}}

-

h3. {{_i}}Heading 3{{/i}}

-

h4. {{_i}}Heading 4{{/i}}

-
h5. {{_i}}Heading 5{{/i}}
-
h6. {{_i}}Heading 6{{/i}}
+

h1. Heading 1

+

h2. Heading 2

+

h3. Heading 3

+

h4. Heading 4

+
h5. Heading 5
+
h6. Heading 6
{{! Body copy }} -

{{_i}}Body copy{{/i}}

-

{{_i}}Bootstrap's global default font-size is 14px, with a line-height of 20px. This is applied to the <body> and all paragraphs. In addition, <p> (paragraphs) receive a bottom margin of half their line-height (10px by default).{{/i}}

+

Body copy

+

Bootstrap's global default font-size is 14px, with a line-height of 20px. This is applied to the <body> and all paragraphs. In addition, <p> (paragraphs) receive a bottom margin of half their line-height (10px by default).

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.

@@ -196,27 +196,27 @@
<p>...</p>
{{! Body copy .lead }} -

{{_i}}Lead body copy{{/i}}

-

{{_i}}Make a paragraph stand out by adding .lead.{{/i}}

+

Lead body copy

+

Make a paragraph stand out by adding .lead.

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.

<p class="lead">...</p>
{{! Using LESS }} -

{{_i}}Built with Less{{/i}}

-

{{_i}}The typographic scale is based on two LESS variables in variables.less: @font-size-base and @line-height-base. The first is the base font-size used throughout and the second is the base line-height. We use those variables and some simple math to create the margins, paddings, and line-heights of all our type and more. Customize them and Bootstrap adapts.{{/i}}

+

Built with Less

+

The typographic scale is based on two LESS variables in variables.less: @font-size-base and @line-height-base. The first is the base font-size used throughout and the second is the base line-height. We use those variables and some simple math to create the margins, paddings, and line-heights of all our type and more. Customize them and Bootstrap adapts.


{{! Emphasis }} -

{{_i}}Emphasis{{/i}}

-

{{_i}}Make use of HTML's default emphasis tags with lightweight styles.{{/i}}

+

Emphasis

+

Make use of HTML's default emphasis tags with lightweight styles.

<small>

-

{{_i}}For de-emphasizing inline or blocks of text, use the small tag.{{/i}}

+

For de-emphasizing inline or blocks of text, use the small tag.

This line of text is meant to be treated as fine print.

@@ -226,24 +226,24 @@ </p>
-

{{_i}}Bold{{/i}}

-

{{_i}}For emphasizing a snippet of text with a heavier font-weight.{{/i}}

+

Bold

+

For emphasizing a snippet of text with a heavier font-weight.

The following snippet of text is rendered as bold text.

<strong>rendered as bold text</strong>
-

{{_i}}Italics{{/i}}

-

{{_i}}For emphasizing a snippet of text with italics.{{/i}}

+

Italics

+

For emphasizing a snippet of text with italics.

The following snippet of text is rendered as italicized text.

<em>rendered as italicized text</em>
-

{{_i}}Heads up!{{/i}} {{_i}}Feel free to use <b> and <i> in HTML5. <b> is meant to highlight words or phrases without conveying additional importance while <i> is mostly for voice, technical terms, etc.{{/i}}

+

Heads up! Feel free to use <b> and <i> in HTML5. <b> is meant to highlight words or phrases without conveying additional importance while <i> is mostly for voice, technical terms, etc.

-

{{_i}}Emphasis classes{{/i}}

-

{{_i}}Convey meaning through color with a handful of emphasis utility classes.{{/i}}

+

Emphasis classes

+

Convey meaning through color with a handful of emphasis utility classes.

Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.

Etiam porta sem malesuada magna mollis euismod.

@@ -264,20 +264,20 @@ {{! Abbreviations }} -

{{_i}}Abbreviations{{/i}}

-

{{_i}}Stylized implementation of HTML's <abbr> element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a title attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover.{{/i}}

+

Abbreviations

+

Stylized implementation of HTML's <abbr> element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a title attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover.

<abbr>

-

{{_i}}For expanded text on long hover of an abbreviation, include the title attribute.{{/i}}

+

For expanded text on long hover of an abbreviation, include the title attribute.

-

{{_i}}An abbreviation of the word attribute is attr.{{/i}}

+

An abbreviation of the word attribute is attr.

<abbr title="attribute">attr</abbr>

<abbr class="initialism">

-

{{_i}}Add .initialism to an abbreviation for a slightly smaller font-size.{{/i}}

+

Add .initialism to an abbreviation for a slightly smaller font-size.

-

{{_i}}HTML is the best thing since sliced bread.{{/i}}

+

HTML is the best thing since sliced bread.

<abbr title="HyperText Markup Language" class="initialism">HTML</abbr>
@@ -286,11 +286,11 @@ {{! Addresses }} -

{{_i}}Addresses{{/i}}

-

{{_i}}Present contact information for the nearest ancestor or the entire body of work.{{/i}}

+

Addresses

+

Present contact information for the nearest ancestor or the entire body of work.

<address>

-

{{_i}}Preserve formatting by ending all lines with <br>.{{/i}}

+

Preserve formatting by ending all lines with <br>.

Twitter, Inc.
@@ -299,8 +299,8 @@ P: (123) 456-7890
- {{_i}}Full Name{{/i}}
- {{_i}}first.last@example.com{{/i}} + Full Name
+ first.last@example.com
@@ -312,8 +312,8 @@
 </address>
 
 <address>
-  <strong>{{_i}}Full Name{{/i}}</strong><br>
-  <a href="mailto:#">{{_i}}first.last@example.com{{/i}}</a>
+  <strong>Full Name</strong><br>
+  <a href="mailto:#">first.last@example.com</a>
 </address>
 
@@ -322,11 +322,11 @@ {{! Blockquotes }} -

{{_i}}Blockquotes{{/i}}

-

{{_i}}For quoting blocks of content from another source within your document.{{/i}}

+

Blockquotes

+

For quoting blocks of content from another source within your document.

-

{{_i}}Default blockquote{{/i}}

-

{{_i}}Wrap <blockquote> around any HTML as the quote. For straight quotes we recommend a <p>.{{/i}}

+

Default blockquote

+

Wrap <blockquote> around any HTML as the quote. For straight quotes we recommend a <p>.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

@@ -338,30 +338,30 @@ </blockquote> -

{{_i}}Blockquote options{{/i}}

-

{{_i}}Style and content changes for simple variations on a standard blockquote.{{/i}}

+

Blockquote options

+

Style and content changes for simple variations on a standard blockquote.

-

{{_i}}Naming a source{{/i}}

-

{{_i}}Add <small> tag for identifying the source. Wrap the name of the source work in <cite>.{{/i}}

+

Naming a source

+

Add <small> tag for identifying the source. Wrap the name of the source work in <cite>.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

- {{_i}}Someone famous in Source Title{{/i}} + Someone famous in Source Title
 <blockquote>
   <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
-  <small>{{_i}}Someone famous <cite title="Source Title">Source Title</cite>{{/i}}</small>
+  <small>Someone famous <cite title="Source Title">Source Title</cite></small>
 </blockquote>
 
-

{{_i}}Alternate displays{{/i}}

-

{{_i}}Use .pull-right for a floated, right-aligned blockquote.{{/i}}

+

Alternate displays

+

Use .pull-right for a floated, right-aligned blockquote.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

- {{_i}}Someone famous in Source Title{{/i}} + Someone famous in Source Title
@@ -375,10 +375,10 @@
 
 
           
-          

{{_i}}Lists{{/i}}

+

Lists

-

{{_i}}Unordered{{/i}}

-

{{_i}}A list of items in which the order does not explicitly matter.{{/i}}

+

Unordered

+

A list of items in which the order does not explicitly matter.

  • Lorem ipsum dolor sit amet
  • @@ -404,8 +404,8 @@ </ul>
-

{{_i}}Ordered{{/i}}

-

{{_i}}A list of items in which the order does explicitly matter.{{/i}}

+

Ordered

+

A list of items in which the order does explicitly matter.

  1. Lorem ipsum dolor sit amet
  2. @@ -424,8 +424,8 @@ </ol> -

    {{_i}}Unstyled{{/i}}

    -

    {{_i}}Remove the default list-style and left padding on list items (immediate children only).{{/i}}

    +

    Unstyled

    +

    Remove the default list-style and left padding on list items (immediate children only).

    • Lorem ipsum dolor sit amet
    • @@ -451,8 +451,8 @@ </ul> -

      {{_i}}Inline{{/i}}

      -

      {{_i}}Place all list items on a single line with inline-block and some light padding.{{/i}}

      +

      Inline

      +

      Place all list items on a single line with inline-block and some light padding.

      • Lorem ipsum
      • @@ -466,12 +466,12 @@ </ul> -

        {{_i}}Description{{/i}}

        -

        {{_i}}A list of terms with their associated descriptions.{{/i}}

        +

        Description

        +

        A list of terms with their associated descriptions.

        -
        {{_i}}Description lists{{/i}}
        -
        {{_i}}A description list is perfect for defining terms.{{/i}}
        +
        Description lists
        +
        A description list is perfect for defining terms.
        Euismod
        Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
        Donec id elit non mi porta gravida at eget metus.
        @@ -486,12 +486,12 @@ </dl> -

        {{_i}}Horizontal description{{/i}}

        -

        {{_i}}Make terms and descriptions in <dl> line up side-by-side.{{/i}}

        +

        Horizontal description

        +

        Make terms and descriptions in <dl> line up side-by-side.

        -
        {{_i}}Description lists{{/i}}
        -
        {{_i}}A description list is perfect for defining terms.{{/i}}
        +
        Description lists
        +
        A description list is perfect for defining terms.
        Euismod
        Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
        Donec id elit non mi porta gravida at eget metus.
        @@ -508,8 +508,8 @@ </dl>

        - {{_i}}Heads up!{{/i}} - {{_i}}Horizontal description lists will truncate terms that are too long to fit in the left column fix text-overflow. In narrower viewports, they will change to the default stacked layout.{{/i}} + Heads up! + Horizontal description lists will truncate terms that are too long to fit in the left column fix text-overflow. In narrower viewports, they will change to the default stacked layout.

@@ -519,7 +519,7 @@ ================================================== -->

Inline

@@ -528,21 +528,21 @@ For example, <section> should be wrapped as inline.
-{{_i}}For example, <code><section></code> should be wrapped as inline.{{/i}}
+For example, <code><section></code> should be wrapped as inline.
 

Basic block

-

{{_i}}Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.{{/i}}

+

Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.

-
<p>{{_i}}Sample text here...{{/i}}</p>
+
<p>Sample text here...</p>
 <pre>
-  &lt;p&gt;{{_i}}Sample text here...{{/i}}&lt;/p&gt;
+  &lt;p&gt;Sample text here...&lt;/p&gt;
 </pre>
 
-

{{_i}}Heads up!{{/i}} {{_i}}Be sure to keep code within <pre> tags as close to the left as possible; it will render all tabs.{{/i}}

-

{{_i}}You may optionally add the .pre-scrollable class which will set a max-height of 350px and provide a y-axis scrollbar.{{/i}}

+

Heads up! Be sure to keep code within <pre> tags as close to the left as possible; it will render all tabs.

+

You may optionally add the .pre-scrollable class which will set a max-height of 350px and provide a y-axis scrollbar.

@@ -551,19 +551,19 @@ ================================================== -->
-

{{_i}}Default styles{{/i}}

-

{{_i}}For basic styling—light padding and only horizontal dividers—add the base class .table to any <table>.{{/i}}

+

Default styles

+

For basic styling—light padding and only horizontal dividers—add the base class .table to any <table>.

- - - + + + @@ -598,19 +598,19 @@
-

{{_i}}Optional classes{{/i}}

-

{{_i}}Add any of the following classes to the .table base class.{{/i}}

+

Optional classes

+

Add any of the following classes to the .table base class.

-

{{_i}}.table-striped{{/i}}

-

{{_i}}Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE8).{{/i}}

+

.table-striped

+

Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE8).

#{{_i}}First Name{{/i}}{{_i}}Last Name{{/i}}{{_i}}Username{{/i}}First NameLast NameUsername
- - - + + + @@ -641,16 +641,16 @@ </table> -

{{_i}}.table-bordered{{/i}}

-

{{_i}}Add borders and rounded corners to the table.{{/i}}

+

.table-bordered

+

Add borders and rounded corners to the table.

#{{_i}}First Name{{/i}}{{_i}}Last Name{{/i}}{{_i}}Username{{/i}}First NameLast NameUsername
- - - + + + @@ -685,16 +685,16 @@ </table> -

{{_i}}.table-hover{{/i}}

-

{{_i}}Enable a hover state on table rows within a <tbody>.{{/i}}

+

.table-hover

+

Enable a hover state on table rows within a <tbody>.

#{{_i}}First Name{{/i}}{{_i}}Last Name{{/i}}{{_i}}Username{{/i}}First NameLast NameUsername
- - - + + + @@ -724,16 +724,16 @@ </table> -

{{_i}}.table-condensed{{/i}}

-

{{_i}}Makes tables more compact by cutting cell padding in half.{{/i}}

+

.table-condensed

+

Makes tables more compact by cutting cell padding in half.

#{{_i}}First Name{{/i}}{{_i}}Last Name{{/i}}{{_i}}Username{{/i}}First NameLast NameUsername
- - - + + + @@ -767,8 +767,8 @@
-

{{_i}}Optional row classes{{/i}}

-

{{_i}}Use contextual classes to color table rows.{{/i}}

+

Optional row classes

+

Use contextual classes to color table rows.

#{{_i}}First Name{{/i}}{{_i}}Last Name{{/i}}{{_i}}Username{{/i}}First NameLast NameUsername
@@ -776,8 +776,8 @@ - - + + @@ -785,25 +785,25 @@ - + - + - + - +
{{_i}}Class{{/i}}{{_i}}Description{{/i}}ClassDescription
.success {{_i}}Indicates a successful or positive action.{{/i}}Indicates a successful or positive action.
.error {{_i}}Indicates a dangerous or potentially negative action.{{/i}}Indicates a dangerous or potentially negative action.
.warning {{_i}}Indicates a warning that might need attention.{{/i}}Indicates a warning that might need attention.
.info {{_i}}Used as an alternative to the default styles.{{/i}}Used as an alternative to the default styles.
@@ -812,9 +812,9 @@ # - {{_i}}Product{{/i}} - {{_i}}Payment Taken{{/i}} - {{_i}}Status{{/i}} + Product + Payment Taken + Status @@ -860,8 +860,8 @@
-

{{_i}}Supported table markup{{/i}}

-

{{_i}}List of supported table HTML elements and how they should be used.{{/i}}

+

Supported table markup

+

List of supported table HTML elements and how they should be used.

@@ -869,8 +869,8 @@ - - + + @@ -879,7 +879,7 @@ <table> @@ -887,7 +887,7 @@ <thead> @@ -895,7 +895,7 @@ <tbody> @@ -903,7 +903,7 @@ <tr> @@ -911,7 +911,7 @@ <td> @@ -919,8 +919,8 @@ <th> @@ -928,7 +928,7 @@ <caption> @@ -959,38 +959,38 @@ ================================================== -->
-

{{_i}}Default styles{{/i}}

-

{{_i}}Individual form controls automatically receive some global styling. By default, inputs are set to width: 100%;.{{/i}}

+

Default styles

+

Individual form controls automatically receive some global styling. By default, inputs are set to width: 100%;.

Legend - - -

{{_i}}Example block-level help text here.{{/i}}

+ + +

Example block-level help text here.

- +
{{! /example }}
 <form>
   <fieldset>
-    <legend>{{_i}}Legend{{/i}}</legend>
-    <label>{{_i}}Label name{{/i}}</label>
-    <input type="text" placeholder="{{_i}}Type something…{{/i}}">
+    <legend>Legend</legend>
+    <label>Label name</label>
+    <input type="text" placeholder="Type something…">
     <span class="help-block">Example block-level help text here.</span>
     <div class="checkbox">
       <label>
-        <input type="checkbox"> {{_i}}Check me out{{/i}}
+        <input type="checkbox"> Check me out
       </label>
     </div>
-    <button type="submit" class="btn">{{_i}}Submit{{/i}}</button>
+    <button type="submit" class="btn">Submit</button>
   </fieldset>
 </form>
 
@@ -999,97 +999,97 @@
-

{{_i}}Optional layouts{{/i}}

-

{{_i}}Included with Bootstrap are three optional form layouts for common use cases.{{/i}}

+

Optional layouts

+

Included with Bootstrap are three optional form layouts for common use cases.

-

{{_i}}Search form{{/i}}

-

{{_i}}Add .form-search to the form and .search-query to the <input> for an extra-rounded text input.{{/i}}

+

Search form

+

Add .form-search to the form and .search-query to the <input> for an extra-rounded text input.

- + {{! /example }}
 <form class="form-search">
   <input type="text" class="span3 search-query">
-  <button type="submit" class="btn">{{_i}}Search{{/i}}</button>
+  <button type="submit" class="btn">Search</button>
 </form>
 
-

{{_i}}Inline form{{/i}}

-

{{_i}}Add .form-inline for left-aligned labels and inline-block controls for a compact layout.{{/i}}

+

Inline form

+

Add .form-inline for left-aligned labels and inline-block controls for a compact layout.

- - + +
- + {{! /example }}
 <form class="form-inline">
-  <input type="text" class="span3" placeholder="{{_i}}Email{{/i}}">
-  <input type="password" class="span3" placeholder="{{_i}}Password{{/i}}">
+  <input type="text" class="span3" placeholder="Email">
+  <input type="password" class="span3" placeholder="Password">
     <div class="checkbox">
       <label>
-        <input type="checkbox"> {{_i}}Remember me{{/i}}
+        <input type="checkbox"> Remember me
       </label>
     </div>
-  <button type="submit" class="btn">{{_i}}Sign in{{/i}}</button>
+  <button type="submit" class="btn">Sign in</button>
 </form>
 
-

{{_i}}Horizontal form{{/i}}

-

{{_i}}Right align labels and float them to the left to make them appear on the same line as controls. Requires the most markup changes from a default form:{{/i}}

+

Horizontal form

+

Right align labels and float them to the left to make them appear on the same line as controls. Requires the most markup changes from a default form:

    -
  • {{_i}}Add .form-horizontal to the form{{/i}}
  • -
  • {{_i}}Wrap labels and controls in .control-group{{/i}}
  • -
  • {{_i}}Add .control-label to the label{{/i}}
  • -
  • {{_i}}Wrap any associated controls in .controls for proper alignment{{/i}}
  • +
  • Add .form-horizontal to the form
  • +
  • Wrap labels and controls in .control-group
  • +
  • Add .control-label to the label
  • +
  • Wrap any associated controls in .controls for proper alignment
- +
- +
- +
- +
- +
 <form class="form-horizontal">
   <div class="control-group">
-    <label class="control-label" for="inputEmail">{{_i}}Email{{/i}}</label>
+    <label class="control-label" for="inputEmail">Email</label>
     <div class="controls">
-      <input type="text" id="inputEmail" placeholder="{{_i}}Email{{/i}}">
+      <input type="text" id="inputEmail" placeholder="Email">
     </div>
   </div>
   <div class="control-group">
-    <label class="control-label" for="inputPassword">{{_i}}Password{{/i}}</label>
+    <label class="control-label" for="inputPassword">Password</label>
     <div class="controls">
-      <input type="password" id="inputPassword" placeholder="{{_i}}Password{{/i}}">
+      <input type="password" id="inputPassword" placeholder="Password">
     </div>
   </div>
   <div class="control-group">
     <div class="controls">
       <label class="checkbox">
-        <input type="checkbox"> {{_i}}Remember me{{/i}}
+        <input type="checkbox"> Remember me
       </label>
-      <button type="submit" class="btn">{{_i}}Sign in{{/i}}</button>
+      <button type="submit" class="btn">Sign in</button>
     </div>
   </div>
 </form>
@@ -1099,12 +1099,12 @@
           
-

{{_i}}Supported form controls{{/i}}

-

{{_i}}Examples of standard form controls supported in an example form layout.{{/i}}

+

Supported form controls

+

Examples of standard form controls supported in an example form layout.

-

{{_i}}Inputs{{/i}}

-

{{_i}}Most common form control, text-based input fields. Includes support for all HTML5 types: text, password, datetime, datetime-local, date, month, time, week, number, email, url, search, tel, and color.{{/i}}

-

{{_i}}Requires the use of a specified type at all times.{{/i}}

+

Inputs

+

Most common form control, text-based input fields. Includes support for all HTML5 types: text, password, datetime, datetime-local, date, month, time, week, number, email, url, search, tel, and color.

+

Requires the use of a specified type at all times.

@@ -1112,8 +1112,8 @@ <input type="text" placeholder="Text input">
-

{{_i}}Textarea{{/i}}

-

{{_i}}Form control which supports multiple lines of text. Change rows attribute as necessary.{{/i}}

+

Textarea

+

Form control which supports multiple lines of text. Change rows attribute as necessary.

@@ -1121,42 +1121,42 @@ <textarea rows="3"></textarea> -

{{_i}}Checkboxes and radios{{/i}}

-

{{_i}}Checkboxes are for selecting one or several options in a list while radios are for selecting one option from many.{{/i}}

-

{{_i}}Default (stacked){{/i}}

+

Checkboxes and radios

+

Checkboxes are for selecting one or several options in a list while radios are for selecting one option from many.

+

Default (stacked)


 <label class="checkbox">
   <input type="checkbox" value="">
-  {{_i}}Option one is this and that—be sure to include why it's great{{/i}}
+  Option one is this and that—be sure to include why it's great
 </label>
 
 <label class="radio">
   <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
-  {{_i}}Option one is this and that—be sure to include why it's great{{/i}}
+  Option one is this and that—be sure to include why it's great
 </label>
 <label class="radio">
   <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
-  {{_i}}Option two can be something else and selecting it will deselect option one{{/i}}
+  Option two can be something else and selecting it will deselect option one
 </label>
 
-

{{_i}}Inline checkboxes{{/i}}

-

{{_i}}Add the .inline class to a series of checkboxes or radios for controls appear on the same line.{{/i}}

+

Inline checkboxes

+

Add the .inline class to a series of checkboxes or radios for controls appear on the same line.

{{_i}}Tag{{/i}}{{_i}}Description{{/i}}TagDescription
- {{_i}}Wrapping element for displaying data in a tabular format{{/i}} + Wrapping element for displaying data in a tabular format
- {{_i}}Container element for table header rows (<tr>) to label table columns{{/i}} + Container element for table header rows (<tr>) to label table columns
- {{_i}}Container element for table rows (<tr>) in the body of the table{{/i}} + Container element for table rows (<tr>) in the body of the table
- {{_i}}Container element for a set of table cells (<td> or <th>) that appears on a single row{{/i}} + Container element for a set of table cells (<td> or <th>) that appears on a single row
- {{_i}}Default table cell{{/i}} + Default table cell
- {{_i}}Special table cell for column (or row, depending on scope and placement) labels{{/i}}
- {{_i}}Must be used within a <thead>{{/i}} + Special table cell for column (or row, depending on scope and placement) labels
+ Must be used within a <thead>
- {{_i}}Description or summary of what the table holds, especially useful for screen readers{{/i}} + Description or summary of what the table holds, especially useful for screen readers
- - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
{{_i}}Button{{/i}}{{_i}}class=""{{/i}}{{_i}}Description{{/i}}Buttonclass=""Description
btn{{_i}}Standard gray button with gradient{{/i}}Standard gray button with gradient
btn btn-primary{{_i}}Provides extra visual weight and identifies the primary action in a set of buttons{{/i}}Provides extra visual weight and identifies the primary action in a set of buttons
btn btn-info{{_i}}Used as an alternative to the default styles{{/i}}Used as an alternative to the default styles
btn btn-success{{_i}}Indicates a successful or positive action{{/i}}Indicates a successful or positive action
btn btn-warning{{_i}}Indicates caution should be taken with this action{{/i}}Indicates caution should be taken with this action
btn btn-danger{{_i}}Indicates a dangerous or potentially negative action{{/i}}Indicates a dangerous or potentially negative action
btn btn-inverse{{_i}}Alternate dark gray button, not tied to a semantic action or use{{/i}}Alternate dark gray button, not tied to a semantic action or use
btn btn-link{{_i}}Deemphasize a button by making it look like a link while maintaining button behavior{{/i}}Deemphasize a button by making it look like a link while maintaining button behavior
-

{{_i}}Cross browser compatibility{{/i}}

-

{{_i}}IE9 doesn't crop background gradients on rounded corners, so we remove it. Related, IE9 jankifies disabled button elements, rendering text gray with a nasty text-shadow that we cannot fix.{{/i}}

+

Cross browser compatibility

+

IE9 doesn't crop background gradients on rounded corners, so we remove it. Related, IE9 jankifies disabled button elements, rendering text gray with a nasty text-shadow that we cannot fix.

-

{{_i}}Button sizes{{/i}}

-

{{_i}}Fancy larger or smaller buttons? Add .btn-large, .btn-small, or .btn-mini for additional sizes.{{/i}}

+

Button sizes

+

Fancy larger or smaller buttons? Add .btn-large, .btn-small, or .btn-mini for additional sizes.

- - + +

- - + +

- - + +

- - + +

 <p>
-  <button class="btn btn-large btn-primary" type="button">{{_i}}Large button{{/i}}</button>
-  <button class="btn btn-large" type="button">{{_i}}Large button{{/i}}</button>
+  <button class="btn btn-large btn-primary" type="button">Large button</button>
+  <button class="btn btn-large" type="button">Large button</button>
 </p>
 <p>
-  <button class="btn btn-primary" type="button">{{_i}}Default button{{/i}}</button>
-  <button class="btn" type="button">{{_i}}Default button{{/i}}</button>
+  <button class="btn btn-primary" type="button">Default button</button>
+  <button class="btn" type="button">Default button</button>
 </p>
 <p>
-  <button class="btn btn-small btn-primary" type="button">{{_i}}Small button{{/i}}</button>
-  <button class="btn btn-small" type="button">{{_i}}Small button{{/i}}</button>
+  <button class="btn btn-small btn-primary" type="button">Small button</button>
+  <button class="btn btn-small" type="button">Small button</button>
 </p>
 <p>
-  <button class="btn btn-mini btn-primary" type="button">{{_i}}Mini button{{/i}}</button>
-  <button class="btn btn-mini" type="button">{{_i}}Mini button{{/i}}</button>
+  <button class="btn btn-mini btn-primary" type="button">Mini button</button>
+  <button class="btn btn-mini" type="button">Mini button</button>
 </p>
 
-

{{_i}}Create block level buttons—those that span the full width of a parent— by adding .btn-block.{{/i}}

+

Create block level buttons—those that span the full width of a parent— by adding .btn-block.

- - + +
-<button class="btn btn-large btn-block btn-primary" type="button">{{_i}}Block level button{{/i}}</button>
-<button class="btn btn-large btn-block" type="button">{{_i}}Block level button{{/i}}</button>
+<button class="btn btn-large btn-block btn-primary" type="button">Block level button</button>
+<button class="btn btn-large btn-block" type="button">Block level button</button>
 
-

{{_i}}Disabled state{{/i}}

-

{{_i}}Make buttons look unclickable by fading them back 50%.{{/i}}

+

Disabled state

+

Make buttons look unclickable by fading them back 50%.

Anchor element

-

{{_i}}Add the .disabled class to <a> buttons.{{/i}}

+

Add the .disabled class to <a> buttons.

- {{_i}}Primary link{{/i}} - {{_i}}Link{{/i}} + Primary link + Link

-<a href="#" class="btn btn-large btn-primary disabled">{{_i}}Primary link{{/i}}</a>
-<a href="#" class="btn btn-large disabled">{{_i}}Link{{/i}}</a>
+<a href="#" class="btn btn-large btn-primary disabled">Primary link</a>
+<a href="#" class="btn btn-large disabled">Link</a>
 

- {{_i}}Heads up!{{/i}} - {{_i}}We use .disabled as a utility class here, similar to the common .active class, so no prefix is required. Also, this class is only for aesthetic; you must use custom JavaScript to disable links here.{{/i}} + Heads up! + We use .disabled as a utility class here, similar to the common .active class, so no prefix is required. Also, this class is only for aesthetic; you must use custom JavaScript to disable links here.

Button element

-

{{_i}}Add the disabled attribute to <button> buttons.{{/i}}

+

Add the disabled attribute to <button> buttons.

- - + +

-<button type="button" class="btn btn-large btn-primary disabled" disabled="disabled">{{_i}}Primary button{{/i}}</button>
-<button type="button" class="btn btn-large" disabled>{{_i}}Button{{/i}}</button>
+<button type="button" class="btn btn-large btn-primary disabled" disabled="disabled">Primary button</button>
+<button type="button" class="btn btn-large" disabled>Button</button>
 
-

{{_i}}One class, multiple tags{{/i}}

-

{{_i}}Use the .btn class on an <a>, <button>, or <input> element.{{/i}}

+

One class, multiple tags

+

Use the .btn class on an <a>, <button>, or <input> element.

- {{_i}}Link{{/i}} - - - + Link + + +
-<a class="btn" href="">{{_i}}Link{{/i}}</a>
-<button class="btn" type="submit">{{_i}}Button{{/i}}</button>
-<input class="btn" type="button" value="{{_i}}Input{{/i}}">
-<input class="btn" type="submit" value="{{_i}}Submit{{/i}}">
+<a class="btn" href="">Link</a>
+<button class="btn" type="submit">Button</button>
+<input class="btn" type="button" value="Input">
+<input class="btn" type="submit" value="Submit">
 
-

{{_i}}As a best practice, try to match the element for your context to ensure matching cross-browser rendering. If you have an input, use an <input type="submit"> for your button.{{/i}}

+

As a best practice, try to match the element for your context to ensure matching cross-browser rendering. If you have an input, use an <input type="submit"> for your button.

@@ -1896,10 +1896,10 @@ ================================================== -->
-

{{_i}}Add classes to an <img> element to easily style images in any project.{{/i}}

+

Add classes to an <img> element to easily style images in any project.

@@ -1910,7 +1910,7 @@ <img src="..." class="img-circle"> <img src="..." class="img-polaroid"> -

{{_i}}Heads up!{{/i}} {{_i}}.img-rounded and .img-circle do not work in IE8 due to lack of border-radius support.{{/i}}

+

Heads up! .img-rounded and .img-circle do not work in IE8 due to lack of border-radius support.

@@ -1921,11 +1921,11 @@ ================================================== -->
-

{{_i}}Included glyphs{{/i}}

-

{{_i}}Bootstrap comes with all 160 of Glyphicons Halflings set, all available in font formats for easy coloring, sizing, and placement.{{/i}}

+

Included glyphs

+

Bootstrap comes with all 160 of Glyphicons Halflings set, all available in font formats for easy coloring, sizing, and placement.

  • glyphicon-glass
  • @@ -2097,33 +2097,33 @@

Glyphicons attribution

-

{{_i}}Glyphicons Halflings are normally not available for free, but an arrangement between Bootstrap and the Glyphicons creator have made this possible at no cost to you as developers. As a thank you, we ask you to include an optional link back to Glyphicons whenever practical.{{/i}}

+

Glyphicons Halflings are normally not available for free, but an arrangement between Bootstrap and the Glyphicons creator have made this possible at no cost to you as developers. As a thank you, we ask you to include an optional link back to Glyphicons whenever practical.


-

{{_i}}How to use{{/i}}

-

{{_i}}Add the appropriate class to any inline element. All icon classes are prefixed with glyphicon- for easy styling. To use, place the following code just about anywhere:{{/i}}

+

How to use

+

Add the appropriate class to any inline element. All icon classes are prefixed with glyphicon- for easy styling. To use, place the following code just about anywhere:

 <i class="glyphicon-search"></i>
 
-

{{_i}}Want to change the icon color? Just change the color of the parent element.{{/i}}

+

Want to change the icon color? Just change the color of the parent element.

- {{_i}}Heads up!{{/i}} - {{_i}}When using beside strings of text, as in buttons or nav links, be sure to leave a space after the icon for proper spacing.{{/i}} + Heads up! + When using beside strings of text, as in buttons or nav links, be sure to leave a space after the icon for proper spacing.


-

{{_i}}Icon examples{{/i}}

-

{{_i}}Use them in buttons, button groups for a toolbar, navigation, or prepended form inputs.{{/i}}

+

Icon examples

+

Use them in buttons, button groups for a toolbar, navigation, or prepended form inputs.

-

{{_i}}Buttons{{/i}}

+

Buttons

-
{{_i}}Button group in a button toolbar{{/i}}
+
Button group in a button toolbar
@@ -2146,35 +2146,35 @@ </div> -
{{_i}}Dropdown in a button group{{/i}}
+
Dropdown in a button group
{{! /bs-docs-example }}
 <div class="btn-group">
-  <a class="btn btn-primary" href="#"><i class="glyphicon-user icon-white"></i> {{_i}}User{{/i}}</a>
+  <a class="btn btn-primary" href="#"><i class="glyphicon-user icon-white"></i> User</a>
   <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#"><span class="caret"></span></a>
   <ul class="dropdown-menu">
-    <li><a href="#"><i class="glyphicon-pencil"></i> {{_i}}Edit{{/i}}</a></li>
-    <li><a href="#"><i class="glyphicon-trash"></i> {{_i}}Delete{{/i}}</a></li>
-    <li><a href="#"><i class="glyphicon-ban-circle"></i> {{_i}}Ban{{/i}}</a></li>
+    <li><a href="#"><i class="glyphicon-pencil"></i> Edit</a></li>
+    <li><a href="#"><i class="glyphicon-trash"></i> Delete</a></li>
+    <li><a href="#"><i class="glyphicon-ban-circle"></i> Ban</a></li>
     <li class="divider"></li>
-    <li><a href="#"><i class="i"></i> {{_i}}Make admin{{/i}}</a></li>
+    <li><a href="#"><i class="i"></i> Make admin</a></li>
   </ul>
 </div>
 
-
{{_i}}Large button{{/i}}
+
Large button
{{! /bs-docs-example }} @@ -2182,7 +2182,7 @@ <a class="btn btn-large" href="#"><i class="icon-star"></i> Star</a> -
{{_i}}Small button{{/i}}
+
Small button
{{! /bs-docs-example }} @@ -2191,30 +2191,30 @@ -

{{_i}}Navigation{{/i}}

+

Navigation

{{! /bs-docs-example }}
 <ul class="nav nav-list">
-  <li class="active"><a href="#"><i class="glyphicon-home icon-white"></i> {{_i}}Home{{/i}}</a></li>
-  <li><a href="#"><i class="glyphicon-book"></i> {{_i}}Library{{/i}}</a></li>
-  <li><a href="#"><i class="glyphicon-pencil"></i> {{_i}}Applications{{/i}}</a></li>
-  <li><a href="#"><i class="i"></i> {{_i}}Misc{{/i}}</a></li>
+  <li class="active"><a href="#"><i class="glyphicon-home icon-white"></i> Home</a></li>
+  <li><a href="#"><i class="glyphicon-book"></i> Library</a></li>
+  <li><a href="#"><i class="glyphicon-pencil"></i> Applications</a></li>
+  <li><a href="#"><i class="i"></i> Misc</a></li>
 </ul>
 
-

{{_i}}Form fields{{/i}}

+

Form fields

- +
@@ -2224,7 +2224,7 @@
 <div class="control-group">
-  <label class="control-label" for="inputIcon">{{_i}}Email address{{/i}}</label>
+  <label class="control-label" for="inputIcon">Email address</label>
   <div class="controls">
     <div class="input-prepend">
       <span class="add-on"><i class="glyphicon-envelope"></i></span>
@@ -2242,144 +2242,144 @@
         ================================================== -->
         
{{! Enabling }} -

{{_i}}Enabling responsive features{{/i}}

-

{{_i}}Responsive CSS requires the following meta tag in the <head> of your pages.{{/i}}

+

Enabling responsive features

+

Responsive CSS requires the following meta tag in the <head> of your pages.

 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
{{! Supported }} -

{{_i}}Supported devices{{/i}}

-

{{_i}}Bootstrap supports a handful of media queries to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:{{/i}}

+

Supported devices

+

Bootstrap supports a handful of media queries to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:

- - - - + + + + - + - + - + - + - + - + - +
{{_i}}Label{{/i}}{{_i}}Layout width{{/i}}{{_i}}Column width{{/i}}{{_i}}Gutter width{{/i}}LabelLayout widthColumn widthGutter width
{{_i}}Large display{{/i}}Large display 1200px and up 70px 30px
{{_i}}Default{{/i}}Default 980px and up 60px 20px
{{_i}}Portrait tablets{{/i}}Portrait tablets 768px and above 42px 20px
{{_i}}Phones to tablets{{/i}}Phones to tablets 767px and below{{_i}}Fluid columns, no fixed widths{{/i}}Fluid columns, no fixed widths
{{_i}}Phones{{/i}}Phones 480px and below{{_i}}Fluid columns, no fixed widths{{/i}}Fluid columns, no fixed widths
-/* {{_i}}Large desktop{{/i}} */
+/* Large desktop */
 @media (min-width: 1200px) { ... }
 
-/* {{_i}}Portrait tablet to landscape and desktop{{/i}} */
+/* Portrait tablet to landscape and desktop */
 @media (min-width: 768px) and (max-width: 979px) { ... }
 
-/* {{_i}}Landscape phone to portrait tablet{{/i}} */
+/* Landscape phone to portrait tablet */
 @media (max-width: 767px) { ... }
 
-/* {{_i}}Landscape phones and down{{/i}} */
+/* Landscape phones and down */
 @media (max-width: 480px) { ... }
 
{{! Responsive utility classes }} -

{{_i}}Responsive utility classes{{/i}}

-

{{_i}}For faster mobile-friendly development, use these utility classes for showing and hiding content by device. Below is a table of the available classes and their effect on a given media query layout (labeled by device).{{/i}}

+

Responsive utility classes

+

For faster mobile-friendly development, use these utility classes for showing and hiding content by device. Below is a table of the available classes and their effect on a given media query layout (labeled by device).

- - - - + + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + +
{{_i}}Class{{/i}}{{_i}}Phones 767px and below{{/i}}{{_i}}Tablets 979px to 768px{{/i}}{{_i}}Desktops Default{{/i}}ClassPhones 767px and belowTablets 979px to 768pxDesktops Default
.visible-phone{{_i}}Visible{{/i}}Visible
.visible-tablet{{_i}}Visible{{/i}}Visible
.visible-desktop{{_i}}Visible{{/i}}Visible
.hidden-phone{{_i}}Visible{{/i}}{{_i}}Visible{{/i}}VisibleVisible
.hidden-tablet{{_i}}Visible{{/i}}{{_i}}Visible{{/i}}VisibleVisible
.hidden-desktop{{_i}}Visible{{/i}}{{_i}}Visible{{/i}}VisibleVisible
-

{{_i}}When to use{{/i}}

-

{{_i}}Use on a limited basis and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation. Responsive utilities should not be used with tables, and as such are not supported.{{/i}}

+

When to use

+

Use on a limited basis and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation. Responsive utilities should not be used with tables, and as such are not supported.

-

{{_i}}Responsive utilities test case{{/i}}

-

{{_i}}Resize your browser or load on different devices to test the above classes.{{/i}}

-

{{_i}}Visible on...{{/i}}

-

{{_i}}Green checkmarks indicate that class is visible in your current viewport.{{/i}}

+

Responsive utilities test case

+

Resize your browser or load on different devices to test the above classes.

+

Visible on...

+

Green checkmarks indicate that class is visible in your current viewport.

    -
  • {{_i}}Phone{{/i}}✔ {{_i}}Phone{{/i}}
  • -
  • {{_i}}Tablet{{/i}}✔ {{_i}}Tablet{{/i}}
  • -
  • {{_i}}Desktop{{/i}}✔ {{_i}}Desktop{{/i}}
  • +
  • Phone✔ Phone
  • +
  • Tablet✔ Tablet
  • +
  • Desktop✔ Desktop
-

{{_i}}Hidden on...{{/i}}

-

{{_i}}Here, green checkmarks indicate that class is hidden in your current viewport.{{/i}}

+

Hidden on...

+

Here, green checkmarks indicate that class is hidden in your current viewport.

    -
  • {{_i}}Phone{{/i}}✔ {{_i}}Phone{{/i}}
  • -
  • {{_i}}Tablet{{/i}}✔ {{_i}}Tablet{{/i}}
  • -
  • {{_i}}Desktop{{/i}}✔ {{_i}}Desktop{{/i}}
  • +
  • Phone✔ Phone
  • +
  • Tablet✔ Tablet
  • +
  • Desktop✔ Desktop
-- cgit v1.2.3