ref: 0432c64dd22e4610302162678bb93661ba68d758
parent: 5a0819b9b5eb9e79826cfa0a65f235d9821b1ac4
author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
date: Tue Jan 23 09:02:54 EST 2018
Add headless bundle support This commit adds support for `headless bundles` for the `index` bundle type. So: ```toml headless = true ``` In front matter means that * It will have no `Permalink` and no rendered HTML in /public * It will not be part of `.Site.RegularPages` etc. But you can get it by: * `.Site.GetPage ...` The use cases are many: * Shared media galleries * Reusable page content "snippets" * ... Fixes #4311