Reputation: 1362
I'm using Hugo Icarus theme. n order to use the full width of the website I disabled the profile on the left and and the widgets on the right for a single page in the frontmatter following read_me file:
+++
disable_profile = true
disable_widgets = true
+++
Thanks in advance!
Upvotes: 0
Views: 253
Reputation: 6661
The example is a toml
header but you use a yaml
header. Thus this needs to be something like:
---
title: Hello R Markdown
author: Frida Gomam
date: '2015-07-24'
categories:
- R
tags:
- plot
disable_profile: true
disable_widgets: true
---
Upvotes: 2