diff options
Diffstat (limited to 'pelican-bootstrap3/templates/base.html')
-rw-r--r-- | pelican-bootstrap3/templates/base.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index 020300e..195934b 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -169,7 +169,7 @@ <div class="container{% if BOOTSTRAP_FLUID %}-fluid{% endif %}"> <div class="row"> {% if not HIDE_SIDEBAR or ABOUT_ME or AVATAR %} - <div class="col-sm-9"> + <div class="col-sm-9{% if SIDEBAR_ON_LEFT %} col-sm-push-3{% endif %}"> {% else %} <div class="col-lg-12"> {% endif %} @@ -179,7 +179,7 @@ {% endblock %} </div> {% if not HIDE_SIDEBAR or ABOUT_ME or AVATAR %} - <div class="col-sm-3" id="sidebar"> + <div class="col-sm-3{% if SIDEBAR_ON_LEFT %} col-sm-pull-9{% endif %}" id="sidebar"> <aside> {% if ABOUT_ME or AVATAR %} {% include 'includes/aboutme.html' %} @@ -205,7 +205,7 @@ {% if BANNER %} <script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/bodypadding.js"></script> {% endif %} -{% include 'includes/github-js.html' %} +{% include 'includes/sidebar/github-js.html' %} {% include 'includes/disqus_script.html' %} {% include 'includes/ga.html' %} {% include 'includes/piwik.html' %} |