README.md 在 github 页面中显示为索引文件 [hugo 博客引擎部署]

README.md showing as index file in github page [hugo blog engine deployment]

*在将 post 呈现为 github 中托管的静态页面时出现问题 ... 我愿意完成的是与Hugo一起完成的个人博客环境! 到目前为止,我在本地拥有 运行 站点并且运行良好...但是在 Github 中部署时,我访问该站点时唯一得到的是

Blockquote

README.md 在 :https://passager07.github.io/ 上呈现为索引页 我无法访问 ...content/post/[post].md

Blockquote

https://github.com/passager07/passager07.github.io

Hugo 用于生成静态 html 页面:这意味着您需要 GutHub 页面 space 指向那些生成的 html 页,不是 md 文件。

您可以在 docs 文件夹 (since August 2016) 或 gh-pages 分支中生成这些 html 页面。

在“Hugo: Hosting on GitHub Pages”中查看更多内容,例如使用 config.toml 和:

publishDir: "docs"

After running hugo, push your master branch to the remote repo and choose the docs folder as the website source of your repo.

此问题的解决方案是:

  1. 在没有 Readme.md 文件和许可证的情况下构建我的新存储库。

  2. 在本地玩hugo和所有配置(包括主题)以获得最大的满足感!

  3. 确保 public 文件夹已创建 运行 hugo
  4. 正在 public 文件夹中获取 .gitingore 文件
  5. 正在将其推送到 master 分支上的我的存储库

完成这些步骤后,我让 https://www.netlify.com 通过自动部署完成剩下的工作!