按照教程进行操作,并编辑并推送了我的更改。它可以正确显示存储库中的更改,但网页上没有任何更改。
https://github.com/StephanBKetterer/StephanBKetterer.github.io
答案 0 :(得分:3)
_config.yml中的一些错误:
第一个破坏了您的最后两个版本,如here所示,当然在配置面板中也是如此。
author:
...
github :"StephanBKetterer"
必须是:
author:
...
github : "StephanBKetterer"
冒号后总是一个空格。
第二个发出警告:
默认值:发现一个无效的前端默认设置:等等
defaults:
...
#_pages
- scope:
path: ""
type: pages
values:
layout: single
author_profile: true
必须像这样缩进:
defaults:
...
#_pages
- scope:
path: ""
type: pages
values:
layout: single
author_profile: true