<h1>Togglable tabs <small>bootstrap-tab.js</small></h1>
</div>
- <p>This plugin adds quick, dynamic tab and pill functionality for transitioning through local content.</p>
<h2>Example tabs</h2>
- <p>Click the tabs below to toggle between hidden panes, even via dropdown menus.</p>
+ <p>Add quick, dynamic tab functionality to transiton through panes of local content, even via dropdown menus.</p>
<div class="bs-docs-example">
<ul id="myTab" class="nav nav-tabs">
<li class="active"><a href="#home" data-toggle="tab">Home</a></li>
<h1>Tooltips <small>bootstrap-tooltip.js</small></h1>
</div>
- <h3>About Tooltips</h3>
- <p>Inspired by the excellent jQuery.tipsy plugin written by Jason Frame; Tooltips are an updated version, which don't rely on images, use css3 for animations, and data-attributes for local title storage.</p>
- <h2>Example use of Tooltips</h2>
+ <h2>Examples</h2>
+ <p>Inspired by the excellent jQuery.tipsy plugin written by Jason Frame; Tooltips are an updated version, which don't rely on images, use CSS3 for animations, and data-attributes for local title storage.</p>
<p>Hover over the links below to see tooltips:</p>
<div class="bs-docs-example tooltip-demo">
<p class="muted" style="margin-bottom: 0;">Tight pants next level keffiyeh <a href="#" rel="tooltip" title="first tooltip">you probably</a> haven't heard of them. Photo booth beard raw denim letterpress vegan messenger bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit american apparel <a href="#" rel="tooltip" title="Another tooltip">have a</a> terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo thundercats. Tofu biodiesel williamsburg marfa, four loko mcsweeney's cleanse vegan chambray. A really ironic artisan <a href="#" rel="tooltip" title="Another one here too">whatever keytar</a>, scenester farm-to-table banksy Austin <a href="#" rel="tooltip" title="The last tip!">twitter handle</a> freegan cred raw denim single-origin coffee viral.
<h1>Popovers <small>bootstrap-popover.js</small></h1>
</div>
- <h3>About popovers</h3>
- <p>Add small overlays of content, like those on the iPad, to any element for housing secondary information.</p>
+ <h2>Example</h2>
+ <p>Add small overlays of content, like those on the iPad, to any element for housing secondary information. Hover over the button to trigger the popover.</p>
<p class="muted"><strong>*</strong> Requires <a href="#tooltips">Tooltip</a> to be included</p>
-
- <h2>Example hover popover</h2>
- <p>Hover over the button to trigger the popover.</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<a href="#" class="btn btn-danger" rel="popover" title="A Title" data-content="And here's some amazing content. It's very engaging. right?">hover for popover</a>
</div>
<h1>Alert messages <small>bootstrap-alert.js</small></h1>
</div>
- <h3>About alerts</h3>
- <p>The alert plugin is a tiny class for adding close functionality to alerts.</p>
<h2>Example alerts</h2>
- <p>The alerts plugin works on regular alert messages, and block messages.</p>
+ <p>Add dismiss functionality to all alerge messages with this plugin.</p>
<div class="bs-docs-example">
<div class="alert fade in">
<button type="button" class="close" data-dismiss="alert">×</button>
<h1>Buttons <small>bootstrap-button.js</small></h1>
</div>
- <h3>About</h3>
- <p>Do more with buttons. Control button states or create groups of buttons for more components like toolbars.</p>
-
<h2>Example uses</h2>
- <p>Use the buttons plugin for states and toggles.</p>
+ <p>Do more with buttons. Control button states or create groups of buttons for more components like toolbars.</p>
<h4>Stateful</h4>
+ <p>Add data-loading-text="Loading..." to use a loading state on a button.</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<button id="fat-btn" data-loading-text="loading..." class="btn btn-primary">
- Loading State
+ Loading state
</button>
</div>
+<pre class="prettyprint linenums">
+<button class="btn btn-primary" data-loading-text="Loading...">Loading state</button>
+</pre>
<h4>Single toggle</h4>
+ <p>Add data-toggle="button" to activate toggling on a single button.</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<button class="btn btn-primary" data-toggle="button">Single Toggle</button>
</div>
+<pre class="prettyprint linenums">
+<button class="btn" data-toggle="button">Single Toggle</button>
+</pre>
<h4>Checkbox</h4>
+ <p>Add data-toggle="buttons-checkbox" for checkbox style toggling on btn-group.</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<div class="btn-group" data-toggle="buttons-checkbox">
<button class="btn btn-primary">Left</button>
<button class="btn btn-primary">Right</button>
</div>
</div>
+<pre class="prettyprint linenums">
+<div class="btn-group" data-toggle="buttons-checkbox">
+ <button class="btn">Left</button>
+ <button class="btn">Middle</button>
+ <button class="btn">Right</button>
+</div>
+</pre>
<h4>Radio</h4>
+ <p>Add data-toggle="buttons-radio" for radio style toggling on btn-group.</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<div class="btn-group" data-toggle="buttons-radio">
<button class="btn btn-primary">Left</button>
<button class="btn btn-primary">Right</button>
</div>
</div>
+<pre class="prettyprint linenums">
+<div class="btn-group" data-toggle="buttons-radio">
+ <button class="btn">Left</button>
+ <button class="btn">Middle</button>
+ <button class="btn">Right</button>
+</div>
+</pre>
<hr class="bs-docs-separator">
<h3>Markup</h3>
<p>Data attributes are integral to the button plugin. Check out the example code below for the various markup types.</p>
-<pre class="prettyprint linenums">
-<!-- Add data-toggle="button" to activate toggling on a single button -->
-<button class="btn" data-toggle="button">Single Toggle</button>
-
-<!-- Add data-toggle="buttons-checkbox" for checkbox style toggling on btn-group -->
-<div class="btn-group" data-toggle="buttons-checkbox">
- <button class="btn">Left</button>
- <button class="btn">Middle</button>
- <button class="btn">Right</button>
-</div>
-
-<!-- Add data-toggle="buttons-radio" for radio style toggling on btn-group -->
-<div class="btn-group" data-toggle="buttons-radio">
- <button class="btn">Left</button>
- <button class="btn">Middle</button>
- <button class="btn">Right</button>
-</div>
-</pre>
<h3>Options</h3>
<p><em>None</em></p>
</div>
</div>
</div>
+<pre class="prettyprint linenums">
+<button class="btn btn-danger" data-toggle="collapse" data-target="#demo">
+ simple collapsible
+</button>
+
+<div id="demo" class="collapse in"> … </div>
+</pre>
<hr class="bs-docs-separator">
<h2>Usage</h2>
- <p>Enable via javascript:</p>
+
+ <h3>Via data attributes</h3>
+ <p>Just add <code>data-toggle="collapse"</code> and a <code>data-target</code> to element to automatically assign control of a collapsible element. The <code>data-target</code> attribute accepts a css selector to apply the collapse to. Be sure to add the class <code>collapse</code> to the collapsible element. If you'd like it to default open, add the additional class <code>in</code>.</p>
+ <p>To add accordion-like group management to a collapsible control, add the data attribute <code>data-parent="#selector"</code>. Refer to the demo to see this in action.</p>
+
+ <h3>Via javascript</h3>
+ <p>Enable manually with:</p>
<pre class="prettyprint linenums">$(".collapse").collapse()</pre>
<h3>Options</h3>
</tr>
</tbody>
</table>
- <h3>Markup</h3>
- <p>Just add <code>data-toggle="collapse"</code> and a <code>data-target</code> to element to automatically assign control of a collapsible element. The <code>data-target</code> attribute accepts a css selector to apply the collapse to. Be sure to add the class <code>collapse</code> to the collapsible element. If you'd like it to default open, add the additional class <code>in</code>.</p>
-<pre class="prettyprint linenums">
-<button class="btn btn-danger" data-toggle="collapse" data-target="#demo">
- simple collapsible
-</button>
-<div id="demo" class="collapse in"> … </div></pre>
- <div class="alert alert-info">
- <strong>Heads up!</strong>
- To add accordion-like group management to a collapsible control, add the data attribute <code>data-parent="#selector"</code>. Refer to the demo to see this in action.
- </div>
<h3>Methods</h3>
<h4>.collapse(options)</h4>
<h1>Carousel <small>bootstrap-carousel.js</small></h1>
</div>
- <h3>About</h3>
- <p>A generic plugin for cycling through elements. A merry-go-round.</p>
-
<h2>Example carousel</h2>
- <p>Watch the slideshow below.</p>
-
+ <p>The slideshow below shows a generic plugin and component for cycling through elements like a carousel.</p>
<div class="bs-docs-example">
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<a class="right carousel-control" href="#myCarousel" data-slide="next">›</a>
</div>
</div>
+<pre class="prettyprint linenums">
+<div id="myCarousel" class="carousel slide">
+ <!-- Carousel items -->
+ <div class="carousel-inner">
+ <div class="active item">…</div>
+ <div class="item">…</div>
+ <div class="item">…</div>
+ </div>
+ <!-- Carousel nav -->
+ <a class="carousel-control left" href="#myCarousel" data-slide="prev">&lsaquo;</a>
+ <a class="carousel-control right" href="#myCarousel" data-slide="next">&rsaquo;</a>
+</div>
+</pre>
- <div class="alert alert-info">
+ <div class="alert alert-warning">
<strong>Heads up!</strong>
When implementing this carousel, remove the images we have provided and replace them with your own.
</div>
<h2>Usage</h2>
- <p>Call via javascript:</p>
+
+ <h3>Via data attributes</h3>
+ <p>...</p>
+
+ <h3>Via javascript</h3>
+ <p>Call carousel manually with:</p>
<pre class="prettyprint linenums">$('.carousel').carousel()</pre>
<h3>Options</h3>
</tbody>
</table>
- <h3>Markup</h3>
- <p>Data attributes are used for the previous and next conrols. Check out the example markup below.</p>
-<pre class="prettyprint linenums">
-<div id="myCarousel" class="carousel slide">
- <!-- Carousel items -->
- <div class="carousel-inner">
- <div class="active item">…</div>
- <div class="item">…</div>
- <div class="item">…</div>
- </div>
- <!-- Carousel nav -->
- <a class="carousel-control left" href="#myCarousel" data-slide="prev">&lsaquo;</a>
- <a class="carousel-control right" href="#myCarousel" data-slide="next">&rsaquo;</a>
-</div>
-</pre>
-
<h3>Methods</h3>
<h4>.carousel(options)</h4>
<p>Initializes the carousel with an optional options <code>object</code> and starts cycling through items.</p>
<h1>{{_i}}Togglable tabs{{/i}} <small>bootstrap-tab.js</small></h1>
</div>
- <p>{{_i}}This plugin adds quick, dynamic tab and pill functionality for transitioning through local content.{{/i}}</p>
<h2>{{_i}}Example tabs{{/i}}</h2>
- <p>{{_i}}Click the tabs below to toggle between hidden panes, even via dropdown menus.{{/i}}</p>
+ <p>{{_i}}Add quick, dynamic tab functionality to transiton through panes of local content, even via dropdown menus.{{/i}}</p>
<div class="bs-docs-example">
<ul id="myTab" class="nav nav-tabs">
<li class="active"><a href="#home" data-toggle="tab">{{_i}}Home{{/i}}</a></li>
<h1>{{_i}}Tooltips{{/i}} <small>bootstrap-tooltip.js</small></h1>
</div>
- <h3>{{_i}}About Tooltips{{/i}}</h3>
- <p>{{_i}}Inspired by the excellent jQuery.tipsy plugin written by Jason Frame; Tooltips are an updated version, which don't rely on images, use css3 for animations, and data-attributes for local title storage.{{/i}}</p>
- <h2>{{_i}}Example use of Tooltips{{/i}}</h2>
+ <h2>{{_i}}Examples{{/i}}</h2>
+ <p>{{_i}}Inspired by the excellent jQuery.tipsy plugin written by Jason Frame; Tooltips are an updated version, which don't rely on images, use CSS3 for animations, and data-attributes for local title storage.{{/i}}</p>
<p>{{_i}}Hover over the links below to see tooltips:{{/i}}</p>
<div class="bs-docs-example tooltip-demo">
<p class="muted" style="margin-bottom: 0;">{{_i}}Tight pants next level keffiyeh <a href="#" rel="tooltip" title="first tooltip">you probably</a> haven't heard of them. Photo booth beard raw denim letterpress vegan messenger bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit american apparel <a href="#" rel="tooltip" title="Another tooltip">have a</a> terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo thundercats. Tofu biodiesel williamsburg marfa, four loko mcsweeney's cleanse vegan chambray. A really ironic artisan <a href="#" rel="tooltip" title="Another one here too">whatever keytar</a>, scenester farm-to-table banksy Austin <a href="#" rel="tooltip" title="The last tip!">twitter handle</a> freegan cred raw denim single-origin coffee viral.{{/i}}
<h1>{{_i}}Popovers{{/i}} <small>bootstrap-popover.js</small></h1>
</div>
- <h3>{{_i}}About popovers{{/i}}</h3>
- <p>{{_i}}Add small overlays of content, like those on the iPad, to any element for housing secondary information.{{/i}}</p>
+ <h2>{{_i}}Example{{/i}}</h2>
+ <p>{{_i}}Add small overlays of content, like those on the iPad, to any element for housing secondary information. Hover over the button to trigger the popover.{{/i}}</p>
<p class="muted"><strong>*</strong> {{_i}}Requires <a href="#tooltips">Tooltip</a> to be included{{/i}}</p>
-
- <h2>{{_i}}Example hover popover{{/i}}</h2>
- <p>{{_i}}Hover over the button to trigger the popover.{{/i}}</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<a href="#" class="btn btn-danger" rel="popover" title="A Title" data-content="And here's some amazing content. It's very engaging. right?">{{_i}}hover for popover{{/i}}</a>
</div>
<h1>{{_i}}Alert messages{{/i}} <small>bootstrap-alert.js</small></h1>
</div>
- <h3>{{_i}}About alerts{{/i}}</h3>
- <p>{{_i}}The alert plugin is a tiny class for adding close functionality to alerts.{{/i}}</p>
<h2>{{_i}}Example alerts{{/i}}</h2>
- <p>{{_i}}The alerts plugin works on regular alert messages, and block messages.{{/i}}</p>
+ <p>{{_i}}Add dismiss functionality to all alerge messages with this plugin.{{/i}}</p>
<div class="bs-docs-example">
<div class="alert fade in">
<button type="button" class="close" data-dismiss="alert">×</button>
<h1>{{_i}}Buttons{{/i}} <small>bootstrap-button.js</small></h1>
</div>
- <h3>{{_i}}About{{/i}}</h3>
- <p>{{_i}}Do more with buttons. Control button states or create groups of buttons for more components like toolbars.{{/i}}</p>
-
<h2>{{_i}}Example uses{{/i}}</h2>
- <p>{{_i}}Use the buttons plugin for states and toggles.{{/i}}</p>
+ <p>{{_i}}Do more with buttons. Control button states or create groups of buttons for more components like toolbars.{{/i}}</p>
<h4>{{_i}}Stateful{{/i}}</h4>
+ <p>{{_i}}Add data-loading-text="Loading..." to use a loading state on a button.{{/i}}</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<button id="fat-btn" data-loading-text="loading..." class="btn btn-primary">
- {{_i}}Loading State{{/i}}
+ {{_i}}Loading state{{/i}}
</button>
</div>{{! /example }}
+<pre class="prettyprint linenums">
+<button class="btn btn-primary" data-loading-text="Loading...">Loading state</button>
+</pre>
<h4>{{_i}}Single toggle{{/i}}</h4>
+ <p>{{_i}}Add data-toggle="button" to activate toggling on a single button.{{/i}}</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<button class="btn btn-primary" data-toggle="button">{{_i}}Single Toggle{{/i}}</button>
</div>{{! /example }}
+<pre class="prettyprint linenums">
+<button class="btn" data-toggle="button">Single Toggle</button>
+</pre>
<h4>{{_i}}Checkbox{{/i}}</h4>
+ <p>{{_i}}Add data-toggle="buttons-checkbox" for checkbox style toggling on btn-group.{{/i}}</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<div class="btn-group" data-toggle="buttons-checkbox">
<button class="btn btn-primary">{{_i}}Left{{/i}}</button>
<button class="btn btn-primary">{{_i}}Right{{/i}}</button>
</div>
</div>{{! /example }}
+<pre class="prettyprint linenums">
+<div class="btn-group" data-toggle="buttons-checkbox">
+ <button class="btn">Left</button>
+ <button class="btn">Middle</button>
+ <button class="btn">Right</button>
+</div>
+</pre>
<h4>{{_i}}Radio{{/i}}</h4>
+ <p>{{_i}}Add data-toggle="buttons-radio" for radio style toggling on btn-group.{{/i}}</p>
<div class="bs-docs-example" style="padding-bottom: 24px;">
<div class="btn-group" data-toggle="buttons-radio">
<button class="btn btn-primary">{{_i}}Left{{/i}}</button>
<button class="btn btn-primary">{{_i}}Right{{/i}}</button>
</div>
</div>{{! /example }}
+<pre class="prettyprint linenums">
+<div class="btn-group" data-toggle="buttons-radio">
+ <button class="btn">Left</button>
+ <button class="btn">Middle</button>
+ <button class="btn">Right</button>
+</div>
+</pre>
<hr class="bs-docs-separator">
<h3>{{_i}}Markup{{/i}}</h3>
<p>{{_i}}Data attributes are integral to the button plugin. Check out the example code below for the various markup types.{{/i}}</p>
-<pre class="prettyprint linenums">
-<!-- {{_i}}Add data-toggle="button" to activate toggling on a single button{{/i}} -->
-<button class="btn" data-toggle="button">Single Toggle</button>
-
-<!-- {{_i}}Add data-toggle="buttons-checkbox" for checkbox style toggling on btn-group{{/i}} -->
-<div class="btn-group" data-toggle="buttons-checkbox">
- <button class="btn">Left</button>
- <button class="btn">Middle</button>
- <button class="btn">Right</button>
-</div>
-
-<!-- {{_i}}Add data-toggle="buttons-radio" for radio style toggling on btn-group{{/i}} -->
-<div class="btn-group" data-toggle="buttons-radio">
- <button class="btn">Left</button>
- <button class="btn">Middle</button>
- <button class="btn">Right</button>
-</div>
-</pre>
<h3>{{_i}}Options{{/i}}</h3>
<p><em>{{_i}}None{{/i}}</em></p>
</div>
</div>
</div>{{! /example }}
+<pre class="prettyprint linenums">
+<button class="btn btn-danger" data-toggle="collapse" data-target="#demo">
+ {{_i}}simple collapsible{{/i}}
+</button>
+
+<div id="demo" class="collapse in"> … </div>
+</pre>
<hr class="bs-docs-separator">
<h2>{{_i}}Usage{{/i}}</h2>
- <p>{{_i}}Enable via javascript:{{/i}}</p>
+
+ <h3>{{_i}}Via data attributes{{/i}}</h3>
+ <p>{{_i}}Just add <code>data-toggle="collapse"</code> and a <code>data-target</code> to element to automatically assign control of a collapsible element. The <code>data-target</code> attribute accepts a css selector to apply the collapse to. Be sure to add the class <code>collapse</code> to the collapsible element. If you'd like it to default open, add the additional class <code>in</code>.{{/i}}</p>
+ <p>{{_i}}To add accordion-like group management to a collapsible control, add the data attribute <code>data-parent="#selector"</code>. Refer to the demo to see this in action.{{/i}}</p>
+
+ <h3>{{_i}}Via javascript{{/i}}</h3>
+ <p>{{_i}}Enable manually with:{{/i}}</p>
<pre class="prettyprint linenums">$(".collapse").collapse()</pre>
<h3>{{_i}}Options{{/i}}</h3>
</tr>
</tbody>
</table>
- <h3>{{_i}}Markup{{/i}}</h3>
- <p>{{_i}}Just add <code>data-toggle="collapse"</code> and a <code>data-target</code> to element to automatically assign control of a collapsible element. The <code>data-target</code> attribute accepts a css selector to apply the collapse to. Be sure to add the class <code>collapse</code> to the collapsible element. If you'd like it to default open, add the additional class <code>in</code>.{{/i}}</p>
-<pre class="prettyprint linenums">
-<button class="btn btn-danger" data-toggle="collapse" data-target="#demo">
- {{_i}}simple collapsible{{/i}}
-</button>
-<div id="demo" class="collapse in"> … </div></pre>
- <div class="alert alert-info">
- <strong>{{_i}}Heads up!{{/i}}</strong>
- {{_i}}To add accordion-like group management to a collapsible control, add the data attribute <code>data-parent="#selector"</code>. Refer to the demo to see this in action.{{/i}}
- </div>
<h3>{{_i}}Methods{{/i}}</h3>
<h4>.collapse({{_i}}options{{/i}})</h4>
<h1>{{_i}}Carousel{{/i}} <small>bootstrap-carousel.js</small></h1>
</div>
- <h3>{{_i}}About{{/i}}</h3>
- <p>{{_i}}A generic plugin for cycling through elements. A merry-go-round.{{/i}}</p>
-
<h2>{{_i}}Example carousel{{/i}}</h2>
- <p>{{_i}}Watch the slideshow below.{{/i}}</p>
-
+ <p>{{_i}}The slideshow below shows a generic plugin and component for cycling through elements like a carousel.{{/i}}</p>
<div class="bs-docs-example">
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<a class="right carousel-control" href="#myCarousel" data-slide="next">›</a>
</div>
</div>{{! /example }}
+<pre class="prettyprint linenums">
+<div id="myCarousel" class="carousel slide">
+ <!-- {{_i}}Carousel items{{/i}} -->
+ <div class="carousel-inner">
+ <div class="active item">…</div>
+ <div class="item">…</div>
+ <div class="item">…</div>
+ </div>
+ <!-- {{_i}}Carousel nav{{/i}} -->
+ <a class="carousel-control left" href="#myCarousel" data-slide="prev">&lsaquo;</a>
+ <a class="carousel-control right" href="#myCarousel" data-slide="next">&rsaquo;</a>
+</div>
+</pre>
- <div class="alert alert-info">
+ <div class="alert alert-warning">
<strong>{{_i}}Heads up!{{/i}}</strong>
{{_i}}When implementing this carousel, remove the images we have provided and replace them with your own.{{/i}}
</div>
<h2>{{_i}}Usage{{/i}}</h2>
- <p>{{_i}}Call via javascript:{{/i}}</p>
+
+ <h3>{{_i}}Via data attributes{{/i}}</h3>
+ <p>{{_i}}...{{/i}}</p>
+
+ <h3>{{_i}}Via javascript{{/i}}</h3>
+ <p>{{_i}}Call carousel manually with:{{/i}}</p>
<pre class="prettyprint linenums">$('.carousel').carousel()</pre>
<h3>{{_i}}Options{{/i}}</h3>
</tbody>
</table>
- <h3>{{_i}}Markup{{/i}}</h3>
- <p>{{_i}}Data attributes are used for the previous and next conrols. Check out the example markup below.{{/i}}</p>
-<pre class="prettyprint linenums">
-<div id="myCarousel" class="carousel slide">
- <!-- {{_i}}Carousel items{{/i}} -->
- <div class="carousel-inner">
- <div class="active item">…</div>
- <div class="item">…</div>
- <div class="item">…</div>
- </div>
- <!-- {{_i}}Carousel nav{{/i}} -->
- <a class="carousel-control left" href="#myCarousel" data-slide="prev">&lsaquo;</a>
- <a class="carousel-control right" href="#myCarousel" data-slide="next">&rsaquo;</a>
-</div>
-</pre>
-
<h3>{{_i}}Methods{{/i}}</h3>
<h4>.carousel({{_i}}options{{/i}})</h4>
<p>{{_i}}Initializes the carousel with an optional options <code>object</code> and starts cycling through items.{{/i}}</p>