module.exports =
  #|
  #|--------------------------------------------------------------------------
  #| Template Layout
  #|--------------------------------------------------------------------------
  #|
  #| Layout to use by default
  #|
  #| Can be overriden with @theme.setLayout 'foo'
  #|
  #|   Default: 'html'
  #|
  #|
  layout: 'html'

  #|
  #|--------------------------------------------------------------------------
  #| Template Theme
  #|--------------------------------------------------------------------------
  #|
  #| Theme to use by default
  #|
  #| Can be overriden with @theme.setTheme 'bar'
  #|
  #|   Default: 'default'
  #|
  #|
  theme: 'default'

  #|
  #|--------------------------------------------------------------------------
  #| Template Theme Locations
  #|--------------------------------------------------------------------------
  #|
  #| Locations to look for themes
  #|
  #|	Default: [APPPATH+'themes/']
  #|
  #|
  theme_locations: [
    APPPATH+'themes/'
  ]

  #|
  #|--------------------------------------------------------------------------
  #| Doctype
  #|--------------------------------------------------------------------------
  #|
  #| Doctype to use by default
  #|
  #| Can be overriden with @theme.setDoctype 'html4-trans'
  #|
  #|   Default: 'html5'
  #|
  #|
  doctype: 'html5'

