Github 页面使用hexo,如何让我的主题支持?
Github page using hexo, how to get my theme supported?
我想在 Github 页上托管一个简单的博客。因此我搭建了一个repository,使用Hexo作为编译部署工具
在本地测试我的站点后,我 运行 使用以下命令:
hexo deploy --generate
可悲的是,几秒钟后,我从 Github 收到以下消息:
The page build failed with the following error:
The hacker theme is not currently supported on GitHub Pages. For more
information, see
https://help.github.com/articles/adding-a-jekyll-theme-to-your-github-pages-site.
For information on troubleshooting Jekyll see:
https://help.github.com/articles/troubleshooting-jekyll-builds
If you have any questions you can contact us by replying to this
email.
如何使用 hacker
主题发布我的网站?如果这不可能,Github 支持哪些主题?我如何在 Hexo 中使用它们?
在 GitHub 页面上绕过 Jekyll
It is now possible to completely bypass Jekyll processing on GitHub
Pages by creating a file named .nojekyll in the root of your pages
repo and pushing it to GitHub. This should only be necessary if your
site uses files or directories that start with underscores since
Jekyll considers these to be special resources and does not copy them
to the final site.
来源:https://github.com/blog/572-bypassing-jekyll-on-github-pages
[..] I used the username.github.io repo and deployed directly to master
and it works!
我想在 Github 页上托管一个简单的博客。因此我搭建了一个repository,使用Hexo作为编译部署工具
在本地测试我的站点后,我 运行 使用以下命令:
hexo deploy --generate
可悲的是,几秒钟后,我从 Github 收到以下消息:
The page build failed with the following error:
The hacker theme is not currently supported on GitHub Pages. For more information, see https://help.github.com/articles/adding-a-jekyll-theme-to-your-github-pages-site.
For information on troubleshooting Jekyll see:
https://help.github.com/articles/troubleshooting-jekyll-builds
If you have any questions you can contact us by replying to this email.
如何使用 hacker
主题发布我的网站?如果这不可能,Github 支持哪些主题?我如何在 Hexo 中使用它们?
在 GitHub 页面上绕过 Jekyll
It is now possible to completely bypass Jekyll processing on GitHub Pages by creating a file named .nojekyll in the root of your pages repo and pushing it to GitHub. This should only be necessary if your site uses files or directories that start with underscores since Jekyll considers these to be special resources and does not copy them to the final site.
来源:https://github.com/blog/572-bypassing-jekyll-on-github-pages
[..] I used the username.github.io repo and deployed directly to master and it works!