Hello there! I am currently exploring a potential scenario.
When viewing on a desktop or laptop, the layout should look like this:
<div class="col-md-3">
sidebar
</div>
<div class="col-md-9">
article
</div>
On a smaller screen, the two divs will switch positions and appear like so:
<div class="col-md-9">
sidebar
</div>
<div class="col-md-3">
article
</div>
I would greatly appreciate your input!