【发布时间】:2019-01-23 01:34:08
【问题描述】:
我想删除我的 GitHub 页面站点中特定页面的 large hero header。
我知道如何customize the themes layout,但我只想自定义特定页面的布局。
例如:
-
README.md:“主页”又名/。我不想自定义 -
credits.md:/credits的学分页面。我不想自定义。 -
help.md:/help的帮助页面。我确实想要自定义。我想remove the header。
我想做/assets/css/help-style.scss之类的事情
---
---
@import "{{ site.theme }}";
header {
display: none;
}
【问题讨论】:
标签: github jekyll github-pages jekyll-theme