Github页面没有显示我的index.html的内容

时间:2018-01-30 07:49:25

标签: github github-pages

我的代码在本地工作正常。但是,当我在GitHub页面上尝试它时,内容不会只显示背景颜色。我该如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

<强>更新

  

混合内容:&#39; https://vanessachu.github.io/WebResume-3.0/&#39;是通过HTTPS加载的,但请求了一个不安全的脚本&#39; http://code.jquery.com/jquery-latest.min.js&#39;。此请求已被阻止;   内容必须通过HTTPS提供。

这是来自chrome的Web控制台的错误,您可以在DevTool中过滤控制台以仅显示错误,然后您会发现它显示为第一个错误,因为大多数供应商的库依赖于$ / jquery,你可以:

a)下载缩小的jquery并将其放在js文件夹

b)使用https代替http从提供静态资产的CDN请求它。个人更喜欢UNPKG - https://unpkg.com/jquery@3.3.1/dist/jquery.min.js

您可能会发现一些有用的网络安全性读数:what is mixed content

答案 1 :(得分:0)

来自GitHub Pages doc

您应该遵循以下步骤:

1. On GitHub, navigate to your GitHub Pages site's repository.

2. Repository settings buttonUnder your repository name, click  Settings.

3. select-gh-pages-or-master-as-sourceUse the Select source drop-down menu to select master or gh-pages as your GitHub Pages publishing source.

4. click-save-next-to-source-selectionClick Save.