Options? Machan Bootstrap will be used as CSS framework only. It has nothing to do with eCommerce functions. For an example
You can use Bootstrap to style your forms and stuff.
I'll explain this bit more. If we are going to code something on HTML or Frontend UI, we usually have to code everything including mobile styles/grids/cols etc. But Bootstrap already has built in classes to help us to reduce work load.
Let's say we need to build a full width row with two columns, If we use bootstrap we can just use it's classes like this, don't have to code any CSS coding.
Code:
<div class="container-fluid">
<div class="row">
<div class="col-6">
Lorem txt
</div>
<div class="col-6">
Isplum txt
</div>
</div>
</div>