2017-06-01 169 views
0

我想在blogdown中安装hugo-academic主题。在我的网站目录我跑R和与关于博客中的主题(hugo-academic)

blogdown::install_theme("gcushen/hugo-academic") 

安装安装我编辑了config.toml文件后如下图所示:

baseurl = "/" 
relativeurls = true 
languageCode = "en-us" 
title = "A Hugo website" 
theme = "hugo-academic" 
googleAnalytics = "" 
disqusShortname = "" 
ignoreFiles = ["\\.Rmd$", "_files$", "_cache$"] 

后,当我尝试以服务网站与 blogdown::serve_site(), 我收到以下错误:

Started building sites ... 
ERROR 2017/06/01 20:02:50 Error while rendering "page": template: theme/_default/single.html:10:7: executing "theme/_default/single.html" at <partial "article_met...>: error calling partial: template: theme/partials/article_metadata.html:7:24: executing "theme/partials/article_metadata.html" at <$.Site.Params.date_f...>: invalid value; expected string 
Started building sites ... 
ERROR 2017/06/01 20:02:50 Error while rendering "page": template: theme/_default/single.html:10:7: executing "theme/_default/single.html" at <partial "article_met...>: error calling partial: template: theme/partials/article_metadata.html:7:24: executing "theme/partials/article_metadata.html" at <$.Site.Params.date_f...>: invalid value; expected string 
The system cannot find the path specified. 
Error in shell(cmd, mustWork = TRUE, intern = intern) : 
    '"C:\Users\Suman\AppData\Roaming\Hugo\hugo.exe" -b/-D -F -d "public" -t hugo-academic' execution failed with error code 1 
In addition: Warning messages: 
1: running command '"C:\Users\Suman\AppData\Roaming\Hugo\hugo.exe" -b/-D -F -d "public" -t hugo-academic' had status 65535 
2: running command '"C:\Users\Suman\AppData\Roaming\Hugo\hugo.exe" -b/-D -F -d "public" -t hugo-academic' had status 65535 
3: running command 'C:\WINDOWS\system32\cmd.exe /c "C:\Users\Suman\AppData\Roaming\Hugo\hugo.exe" -b/-D -F -d "public" -t hugo-academic' had status 1 

任何帮助解决此问题?

注意:我在Windows 10 64位操作系统上。

+0

只是一个猜测,但我认为你的baseurl应该是“。”。这里有更多关于这个话题的信息:https://gohugo.io/extras/urls/ – sinQueso

+0

@sinQueso这应该不是问题。 –

回答

2

从错误消息判断,您需要将date_format参数添加到您的config.toml文件中。尝试在结尾处加上这样的:

[params] 
    date_format = "Mon, Jan 2, 2006" 

看看在example config file进行更多设置,你可以改变。

+0

是的,我也认为这是问题。 @Suman你需要阅读https://bookdown.org/yihui/blogdown/other-themes.html,并且我推荐'new_site()'而不是'install_theme()'正是因为这个问题。 –

+0

加入'[params] date_format =“星期一,2006年1月2日”,是的,它的工作。谢谢@Jack Taylor和@Yihui。 blogdown/bookdown/pkgdown真棒! –