Fork me on GitHub

Examples

Various examples of Bootstrap styling applied to Sphinx constructs. You can view the source of this page to see the specific reStructuredText used to create these examples.

Headings

This is a first level heading (h1).

Sub-Heading

This is a second level heading (h2).

Sub-Sub-Heading

This is a third level heading (h3).

Code

The Sphinx Bootstrap Theme uses Bootstrap styling for inline code text and

multiline
code text

Admonitions

The Sphinx Bootstrap Theme uses the Bootstrap alert classes for Sphinx admonitions.

Note

Note

This is a note.

Warning

Warning

This is a warning.

Tables

Here are some examples of Sphinx tables. The Sphinx Bootstrap Theme removes all Sphinx docutils classes and replaces them with the default Bootstrap table class. You can add additional table classes using the Sphinx cssclass:: directive, as demonstrated in the following tables.

Grid

A “bordered” grid table:

Header1 Header2 Header3 Header4
row1, cell1 cell2 cell3 cell4
row2 ... ... ...  
... ... ...  

which uses the directive:

.. cssclass:: table-bordered

Simple

A simple “striped” table:

H1 H2 H3
cell1 cell2 cell3
... ... ...
... ... ...

which uses the directive:

.. cssclass:: table-striped

And a “hoverable” table:

H1 H2 H3
cell1 cell2 cell3
... ... ...
... ... ...

which uses the directive:

.. cssclass:: table-hover