On Wed, Nov 7, 2012 at 7:11 PM, Jack Morgan <
jackmor...@gmail.com> wrote:
>
> I couldn't seem to find what I was looking for. I'm trying to turn off
> this bar:
The `html_sidebars' do not affect the navigation bar. Sorry for
pointing you in the wrong direction.
To omit the navigation bar, you can override the theme's "layout.html"
template by creating a file "_templates/layout.html" with the
following content:
{% extends "!layout.html" %}
{# Omit the top navigation bar. #}
{% block relbar1 %}
{% endblock %}
{# Omit the bottom navigation bar. #}
{% block relbar2 %}
{% endblock %}
--
Jonathan Waltman