【发布时间】:2019-04-11 05:25:36
【问题描述】:
我使用 Hugo 构建我的博客,步骤如下:
hugo new site my_blog
cd my_blog
hugo new welcome.md
'change the theme'
hugo server --buildDrafts
但是页面中没有帖子,页面中除了背景什么都没有。请帮帮我。
【问题讨论】:
标签: hugo
我使用 Hugo 构建我的博客,步骤如下:
hugo new site my_blog
cd my_blog
hugo new welcome.md
'change the theme'
hugo server --buildDrafts
但是页面中没有帖子,页面中除了背景什么都没有。请帮帮我。
【问题讨论】:
标签: hugo
您的新内容应包含在部分中,例如post。所以添加新博文的命令更像hugo new post/my-new-post.md。
如果这不起作用,我们需要有关您使用的主题的更多信息。
【讨论】:
这可能是几件事:
没有配置文件,根据主题,您可能需要添加配置选项
雨果新帖子/welcome.md vi post/welcome.md hugo -D 服务器
【讨论】: