4

Anyone know of a way to remove or hide the asides panel for some pages in an Ocotopress site?

How about defaulting the aside to expanded (ie, shown at the bottom rather than the right hand side)

thefourtheye
  • 233,700
  • 52
  • 457
  • 497
Toby
  • 9,523
  • 8
  • 36
  • 59

1 Answers1

7

In the yaml front matter you can force it to the bottom of the page with:

sidebar: collapse

If you want to disable it use:

sidebar: false
Brandon Mathis
  • 1,536
  • 1
  • 10
  • 6
  • Should I put this in `_config.yml` in Main Config ? As in `description: # sidebar: false sidebar: collapse`. Collapse I can see but false does not do anything – Mr_and_Mrs_D Dec 22 '13 at 16:42
  • 1
    @Mr_and_Mrs_D `sidebar: collapse` works in global _config.yml, but `sidebar: false` works on a per-page basis; you should enter sidebar: false in your article header. Otherwise consider editing/customizing layouts. (see source/_layouts and/or source/_includes/custom) – Alan Franzoni Feb 14 '14 at 23:45