Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thieu1995/47c4d6b65e9e8f27b36c5c97f0ba2017 to your computer and use it in GitHub Desktop.
Save thieu1995/47c4d6b65e9e8f27b36c5c97f0ba2017 to your computer and use it in GitHub Desktop.
This block code will make your main content of blog reverse the order with the right sidebar (Jekyll, Bootstrap 4.5, Responsive)
<div class="container-fluid">
<div id="blog_wrapper">
<div class="row">
<div class="col-12 col-lg-9 order-lg-first order-md-last order-sm-last order-last">
{{ content }}
</div>
<div class="col-12 col-lg-3 order-lg-last order-md-first order-sm-first order-first">
{%- include right_sidebar.html -%}
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment