construct to get a 100% wide page on all devices.
Additionally, we can use positioning to line up along the top of the page:
See more at https://getbootstrap.com/docs/5.3/utilities/position/
Row and column
--------------
Bootstrap has a "row" and "col" concept. These are heavily used throughout the HTML pages.
In Bootstrap 5, there are "12" columns per row, and we can define specific widths with "col-3":
this is a column with a width of about 25% of the screen.
We use various "div" options to adjust layout in each "row", *
*
See more at https://getbootstrap.com/docs/5.3/layout/grid/
Start and End
-------------
Bootstrap 5 uses "start" and "end", instead of "left" and "right".
E.g. "me-auto" is "Marging-End Auto", ie automatic right side margin.
mb- is Margin Bottom
See more at https://getbootstrap.com/docs/5.3/utilities/spacing/
Menus
-----
Dropdowns are described at https://getbootstrap.com/docs/5.3/components/dropdowns/
Tooltips
--------
We use the tooltips from Bootstrap, as such:
**data-bs-toggle="tooltip" data-bs-title="Tooltip text here"**
This is initiated in _base.html, in the **$(document).ready(function())**, per this page:
https://getbootstrap.com/docs/5.3/components/tooltips/#overview
Tab Menus
---------
Tab Menus are implemented as documented here: https://fastbootstrap.com/components/tabs/
They are implemented in *openl2m/templates/switch.html* which includes various *_menu_
.html* files.
Since we use templates for the various tab menus, and some need to be active or not, we include
these templates as such in *switch.html*:
.. code-block:: jinja
{% include "_menu_interfaces.html" with state="active" %}
and in the _menu_.html as such:
.. code-block:: jinja