简体   繁体   中英

Hugo Icarus Theme and Blogdown unable to disable sidebar

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!

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
---

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM